item method

Attr? item(
  1. int index
)

The item() method of the NamedNodeMap interface returns the item in the map matching the index.

Note: This method is also called when you use the operator [] syntax. So, myMap[i]is equivalent to myMap.item(i) where i is a number.

Implementation

external Attr? item(int index);