Understanding NodeList in JavaScript What is a NodeList? NodeList is a collection of DOM nodes (elements) returned by methods like querySelectorAll, childNodes, etc. Unlike arrays, NodeList is not a ...
Looping Objects is easy. Looping Arrays is also easy. Looping NodeLists is easy. They can be a little repetitive though and often take time to construct each loop and pass in the index, property, ...