DEV Community

Discussion on: objects? No... array, please!

 
genta profile image
Fabio Russo

Most of the time with nodeList... I know what you’re talking about but I use to convert them in arrays if there’s not a HUGE amount of stuff to do.

Thread Thread
 
alainvanhout profile image
Alain Van Hout

Yes, that allows you to leverage the extra methods (i.e. power) of javascript arrays (since a nodeList is just a poor-man’s array anyway). But that’s quite different from the approach you discuss above, about using arrays instead of objects with fields.

Thread Thread
 
genta profile image
Fabio Russo

Maybe It was not so clear ☹️