DOMStringList: item() method - Web APIs | MDN (original) (raw)
Baseline
Widely available
Note: This feature is available in Web Workers.
The item()
method returns a string from a DOMStringList by index.
Syntax
JavaScript also offers an array-like bracketed syntax for obtaining an item from aDOMStringList
by index:
Parameters
the index of the string to get. The index is zero-based.
Return value
The string at the index position in the DOMStringList
; otherwise null
if the provided index is out of range.
Exceptions
Thrown if no argument is provided.
Specifications
Specification |
---|
HTML # dom-domstringlist-item |