NodeList: keys() メソッド

NodeList.keys() メソッドは、このオブジェクトに含まれるすべてのキーを走査することができるイテレーターを返します。キーは unsigned integer です。

構文

js
keys()

返値

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

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);

let list = node.childNodes;

// for...of の使用
for (const key of list.keys()) {
  console.log(key);
}

結果は次の通りです。

0
1
2

ブラウザーの互換性

BCD tables only load in the browser

関連情報