Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Set.prototype.entries()

翻译正在进行中。

entries() 方法返回一个新的 Iterator 对象 ,这个对象的元素是类似 [value, value] 形式的数组,value 是集合对象中的每个元素,Iterator 对象元素的顺序即集合对象中元素插入的顺序。由于集合对象不像 Map 对象那样拥有 key,然而,为了与 Map 对象的 API 形式保持一致,故使得每一个 entry 的 key 和 value 都拥有相同的值,因而最终返回一个 [value, value] 形式的数组。

语法

mySet.entries()

返回值

一个新的包含 [value, value] 形式的数组 Iterator 对象,value 是给定集合中的每个元素,Iterator 对象元素的顺序即集合对象中元素插入的顺序。

示例

使用 entries()

var mySet = new Set();
mySet.add("foobar");
mySet.add(1);
mySet.add("baz");

var setIter = mySet.entries();

console.log(setIter.next().value); // ["foobar", "foobar"]
console.log(setIter.next().value); // [1, 1]
console.log(setIter.next().value); // ["baz", "baz"]

规范

规范 状态 说明
ECMAScript 2015 (6th Edition, ECMA-262)
Set.prototype.entries
Standard 初始定义。
ECMAScript 2017 Draft (ECMA-262)
Set.prototype.entries
Draft  

浏览器兼容性 

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support 38 24 (24) 未实现 25 7.1
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support 未实现 38 24.0 (24) 未实现 未实现 8

相关链接

文档标签和贡献者

 此页面的贡献者: timlee1128
 最后编辑者: timlee1128,