HTMLCollection and NodeList
With the above HTML structure, the DOM API document.getElementsByTagName("p")
will return an array-like list called HTMLCollection
while document.querySelectorAll("p")
will also return an array-like list called NodeList
.
DOM API
Result
document.getElementsByTagName("p")
document.querySelectorAll("p")
Although the contents of both lists are same, HTMLCollection
is always a live list - if the corresponding DOM gets updated, so will the HTMLCollection.
Further, it is also possible to get hold of a live NodeList; e.g. {HTMLElement}.childNodes
.
Today, the concept of HTMLCollection probably exists in modern browser implementations just for legacy purposes - to retain the behavior of older and now non-standard DOM APIs like document.forms
, HTMLElement.children
, document.getElementsByTagName()
etc. But this is all browser implementation specific. Not every browser will follow same implementation.
A word of caution about live collections
As an example of live collections, {HTMLElement}.childNodes
returns a live NodeList
and document.getElementsByTagName()
returns a live HTMLCollection
. One should be extra careful while iterating on these entities, as an operation that updates the same collection from within the iteration might affect the length of the loop in an unexpected way.
Last updated