stuartpb
2015-03-23
Take, for example, NodeList. MDN claims:
for...of
loops will loop over NodeList objects correctly, in browsers that supportfor...of
(like Firefox 13 and later)
However, this is plainly not the case in browsers like Chrome, as there’s no standard (as far as I’m aware) that specifies that NodeList should implement @@iterator
.