The forEach()
method of the NodeList
interface calls the callback given in parameter once for each value pair in the list, in insertion order.
nodeList.forEach(callback); nodeList.forEach(callback, argument);
callback
currentValue
currentIndex
listObj
forEach()
is being applied to.argument
Optional
this
when executing callback
.None.
var node = document.createElement("div"); var kid1 = document.createElement("p"); var kid2 = document.createTextNode("hey"); var kid3 = document.createElement("span"); node.appendChild(kid1); node.appendChild(kid2); node.appendChild(kid3); var list = node.childNodes; list.forEach( function(value, key, listObj, argument) { console.log(value + ' ' + key + "/" + this); }, "arg" );
results in:
[object HTMLParagraphElement] 0/arg [object Text] 1/arg [object HTMLSpanElement] 2/arg
Specification | Status | Comment |
---|---|---|
DOM The definition of 'entries() (as iterable<Node>)' in that specification. | Living Standard | Initial definition. |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | 51 | 50 (50) | No support | 38 | 10 (maybe prior) |
Feature | Android | Android Webview | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|---|
Basic support | No support | (Yes) | 50.0 (50) | No support | (Yes) | 10 (maybe prior) | 51 |
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/NodeList/forEach