Set.prototype.entries()
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.
entries()
は Set
インターフェイスのメソッドで、集合の新しいイテレーターオブジェクトを返します。これは [value, value]
の配列の形で集合の各要素を挿入順に返します。 Set
オブジェクトは、Map
オブジェクトのように key
を持つことはありません。しかしながら、Map
オブジェクトと似た API をもつために、それぞれの項目は key と value に対して同じ値を持ちます。そのため、配列 [value, value]
が返されます。
試してみましょう
const set1 = new Set();
set1.add(42);
set1.add("forty two");
const iterator1 = set1.entries();
for (const entry of iterator1) {
console.log(entry);
// Expected output: Array [42, 42]
// Expected output: Array ["forty two", "forty two"]
}
構文
js
entries()
引数
なし。
返値
新しい反復可能なイテレーターオブジェクトです。
例
entries() の使用
js
const mySet = new Set();
mySet.add("foobar");
mySet.add(1);
mySet.add("baz");
const setIter = mySet.entries();
console.log(setIter.next().value); // ["foobar", "foobar"]
console.log(setIter.next().value); // [1, 1]
console.log(setIter.next().value); // ["baz", "baz"]
仕様書
Specification |
---|
ECMAScript® 2025 Language Specification # sec-set.prototype.entries |
ブラウザーの互換性
Report problems with this compatibility data on GitHubdesktop | mobile | server | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
entries |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.