files/en-us/web/api/htmlallcollection/item/index.md
{{APIRef("HTML DOM")}}
The item() method of the {{domxref("HTMLAllCollection")}} interface returns the element located at the specified offset into the collection, or the element with the specified value for its id or name attribute.
item(nameOrIndex)
nameOrIndex
HTMLAllCollection in the same order in which they appear in the document's source. If the parameter is a string can't be converted to an integer, it will be interpreted as the name or id of the element to be returned.If nameOrIndex represents an index, item() returns the {{domxref("Element")}} at the specified index, or null if nameOrIndex is less than zero or greater than or equal to the length property. If nameOrIndex represents a name, item() returns the same value as {{domxref("HTMLAllCollection/namedItem", "namedItem()")}}.
{{Specifications}}
{{Compat}}