--- title: NodeList.item() slug: Web/API/NodeList/item translation_of: Web/API/NodeList/item ---
{{APIRef("DOM")}}

NodeList 의 node를 index로 돌려줍니다. 이 메서드는 인수(arguments)를 제공하는 한 exceptions 을 throw 하지 않습니다. index가 범위를 벗어나면 null 값이 반환되고, 인수가 제공되지 않으면 TypeError 가 throw 됩니다.

Syntax

nodeItem = nodeList.item(index)

Alternate Syntax

자바스크립트는 NodeList 에서 index를 얻기 위한, 배열과 같은 브라켓 문법([])을 제공합니다 :

nodeItem = nodeList[index]

Example

var tables = document.getElementsByTagName("table");
var firstTable = tables.item(1); // or simply tables[1] - returns the second table in the DOM

Specification

DOM Level 1 Core: NodeList.item()

DOM Level 2 Core: NodeList.item()

Browser compatibility

{{Compat("api.NodeList.item")}}