Set.prototype.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.

Set 实例的 values() 方法返回一个新的 设置迭代器 对象,其中包含按插入顺序排列的该集合中每个元素的值。

¥The values() method of Set instances returns a new set iterator object that contains the values for each element in this set in insertion order.

Try it

语法

¥Syntax

js
values()

参数

¥Parameters

没有任何。

¥None.

返回值

¥Return value

新的 可迭代的迭代器对象

¥A new iterable iterator object.

示例

¥Examples

使用值()

¥Using values()

js
const mySet = new Set();
mySet.add("foo");
mySet.add("bar");
mySet.add("baz");

const setIter = mySet.values();

console.log(setIter.next().value); // "foo"
console.log(setIter.next().value); // "bar"
console.log(setIter.next().value); // "baz"

规范

Specification
ECMAScript Language Specification
# sec-set.prototype.values

¥Specifications

浏览器兼容性

BCD tables only load in the browser

¥Browser compatibility

也可以看看