DEV Community

Discussion on: Dumb Breakthrough moment: JSON Object Array Access

Collapse
 
ben profile image
Ben Halpern

Speaking of trip ups: NodeList.

Looks and smells like an Array but don’t try calling forEach!

Thread Thread
 
leanminmachine profile image
leanminmachine • Edited

Huh. MDN docs @ developer.mozilla.org/en-US/docs/W... says this:

Although NodeList is not an Array, it is possible to iterate over it with forEach(). It can also be converted to a real Array using Array.from().

However, some older browsers have not implemented NodeList.forEach() nor Array.from(). This can be circumvented by using Array.prototype.forEach() — see this document's Example.

I'm not too familiar with NodeList though.

Thread Thread
 
ben profile image
Ben Halpern

It’s not that dealing with this one way or another is that much of a pain, it’s just frustrating that it often trips people up when they’re expecting array behavior and don’t know what to do when it’s almost array behavior.

Thread Thread
 
lvl99 profile image
Matt Scheurich

Things like Set and Map do well to hint that they are not arrays by using the size property instead of length. Should NodeList perhaps implement this prop name hint, or is it just a matter of browser support?

Thread Thread
 
nektro profile image
Meghan (she/her)

NodeList should inherit Array though. Set and Map are entirely different data structures.