NodeList vs. Array
🔰 JS ⟩ browser ⟩ DOM ⟩ types ⟩ NodeList ⟩ NodeList vs. Array
can not use push(), pop(), slice(), join() directly on NodeList.
NodeList can be a live collection.
Array is a JavaScript built-in object, NodeList is browser API.
Last updated