NodeList: values() メソッド

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

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

構文

js
values()

返値

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

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 value of list.values()) {
  console.log(value);
}

結果は次の通りです。

<p>
#text "hey"
<span>

ブラウザーの互換性

BCD tables only load in the browser

関連情報