NodeList
objects are collections of nodes, usually returned by properties such as Node.childNodes
and methods such as document.querySelectorAll()
.
Note: 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()
.
Live vs. Static NodeLists
Although they are both considered NodeList
objects, there are 2 varieties of NodeList: live and static.
Live NodeLists
In some cases, the NodeList
is live, which means that changes in the DOM automatically update the collection.
For example, Node.childNodes
is live:
const parent = document.getElementById("parent");
let childNodes = parent.childNodes;
console.log(childNodes.length);
parent.appendChild(document.createElement("div"));
console.log(childNodes.length);
Static NodeLists
In other cases, the NodeList
is static, where any changes in the DOM do not affect the content of the collection. The ubiquitous document.querySelectorAll()
method returns a static NodeList
.
It's good to keep this distinction in mind when you choose how to iterate over the items in the NodeList
, and whether you should cache the list's length
.
Instance properties
-
NodeList.length
Read only
-
The number of nodes in the NodeList
.
Instance methods
NodeList.item()
-
Returns an item in the list by its index, or null
if the index is out-of-bounds.
An alternative to accessing nodeList[i]
(which instead returns undefined
when i
is out-of-bounds). This is mostly useful for non-JavaScript DOM implementations.
NodeList.entries()
-
Returns an iterator
, allowing code to go through all key/value pairs contained in the collection. (In this case, the keys are integers starting from 0
and the values are nodes.)
NodeList.forEach()
-
Executes a provided function once per NodeList
element, passing the element as an argument to the function.
NodeList.keys()
-
Returns an iterator
, allowing code to go through all the keys of the key/value pairs contained in the collection. (In this case, the keys are integers starting from 0
.)
NodeList.values()
-
Returns an iterator
allowing code to go through all values (nodes) of the key/value pairs contained in the collection.
Example
It's possible to loop over the items in a NodeList
using a for loop:
for (let i = 0; i < myNodeList.length; i++) {
let item = myNodeList[i];
}
Don't use for...in
to enumerate the items in NodeList
s, since they will also enumerate its length
and item
properties and cause errors if your script assumes it only has to deal with element
objects. Also, for...in
is not guaranteed to visit the properties in any particular order.
for...of
loops loop over NodeList
objects correctly:
const list = document.querySelectorAll("input[type=checkbox]");
for (const checkbox of list) {
checkbox.checked = true;
}
Browsers also support the iterator method (forEach()
) as well as entries()
, values()
, and keys()
.
Specifications
Browser compatibility
|
Desktop |
Mobile |
|
Chrome |
Edge |
Firefox |
Internet Explorer |
Opera |
Safari |
WebView Android |
Chrome Android |
Firefox for Android |
Opera Android |
Safari on IOS |
Samsung Internet |
@@iterator |
51 |
79 |
36 |
No |
38 |
10 |
51 |
51 |
36 |
41 |
10 |
5.0 |
NodeList |
1 |
12 |
1 |
5 |
8 |
1 |
4.4 |
18 |
4 |
10.1 |
1 |
1.0 |
entries |
51 |
16 |
50 |
No |
38 |
10 |
51 |
51 |
50 |
41 |
10 |
5.0 |
forEach |
51 |
16 |
50 |
No |
38 |
10 |
51 |
51 |
50 |
41 |
10 |
5.0 |
item |
1 |
12 |
1 |
5 |
≤12.1 |
1 |
4.4 |
18 |
4 |
≤12.1 |
1 |
1.0 |
keys |
51 |
16 |
50 |
No |
38 |
10 |
51 |
51 |
50 |
41 |
10 |
5.0 |
length |
1 |
12 |
1 |
5 |
≤12.1 |
1 |
4.4 |
18 |
4 |
≤12.1 |
1 |
1.0 |
values |
51 |
16 |
50 |
No |
38 |
10 |
51 |
51 |
50 |
41 |
10 |
5.0 |