NodeList : Object A list of %%/Node|Nodes%% similar to an %%/Array|Array%%. NodeLists are returned from various methods such as %%/Document#getElementsByClassName|**document.getElementsByClassName()**%%, %%/Document#getElementsByTagName|**document.getElementsByTagName()**%%, and %%/Document#querySelectorAll|**document.querySelectorAll()**%%. Note, the items in a NodeList may update as the underlying document updates, see the documentation for the API that created the NodeList for more details. Spec: https://dom.spec.whatwg.org/#interface-nodelist ---- instance[index : Number] : Node Returns the Node at the specified **index**. You can also use the %%#item|**item()**%% method to retrieve the item.
foo
bar
ReadOnly: true ---- instance.length : Number The number of Nodes in the list.
foo
bar
ReadOnly: true Spec: http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-203510337 ---- prototype.item(index : Number) : Node Same as %%#indexer_Number|**this[index]**%%. Spec: http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-844377136