NodeList: entries() メソッド

NodeList.entries() メソッドは、オブジェクト内にあるすべてのキーと値のペアを走査することができるイテレーターを返します。値は Node オブジェクトです。

構文

js
entries()

返値

イテレーターを返します。

js
const node = document.createElement("div");
const kid1 = document.createElement("p");
const kid2 = document.createTextNode("hey");
const kid3 = document.createElement("span");
node.appendChild(kid1);
node.appendChild(kid2);
node.appendChild(kid3);

const list = node.childNodes;

// for...of を使用
for (const entry of list.entries()) {
  console.log(entry);
}

結果は次のようになります。

Array [ 0, <p> ]
Array [ 1, #text "hey" ]
Array [ 2, <span> ]

ブラウザーの互換性

BCD tables only load in the browser

関連情報