Inherits from JavaScript Object

Overview

An immutable collection of nodes.

Elements can be accessed using the item() function or via the array style operator:

var node = nodeList.item(0);
//or
var node = nodeList[0];

Overview of Tasks

Attributes

  • Type
  • int
  • Writability
  • readonly

Functions

  • Return Type
  • Node

Attributes

length

readonly int length

Functions

item(index)

Node item(int index)

Parameters

int index

Return Value: Node