Set 构造函数 lets you create Set objects that store unique values of any type, whether 原语值 or object references.

The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.

句法

new Set([iterable])
					

参数

iterable 可选

If an iterable object is passed, all of its elements will be added to the new Set .

If you don't specify this parameter, or its value is null , the new Set is empty.

返回值

A new Set 对象。

范例

使用 Set object

let mySet = new Set()
mySet.add(1)           // Set [ 1 ]
mySet.add(5)           // Set [ 1, 5 ]
mySet.add(5)           // Set [ 1, 5 ]
mySet.add('some text') // Set [ 1, 5, 'some text' ]
let o = {a: 1, b: 2}
mySet.add(o)
					

规范

规范
ECMAScript (ECMA-262)
The definition of 'Set constructor' in that specification.

浏览器兼容性

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. 更新 GitHub 上的兼容性数据
Desktop Mobile Server
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet Node.js
Set() 构造函数 Chrome 38 Edge 12 Firefox 13 IE 11 Opera 25 Safari 8 WebView Android 38 Chrome Android 38 Firefox Android 14 Opera Android 25 Safari iOS 8 Samsung Internet Android 3.0 nodejs 0.12
0.12
0.10 Disabled
Disabled From version 0.10: this feature is behind the --harmony runtime flag.
new Set(iterable) Chrome 38 Edge 12 Firefox 13 IE No Opera 25 Safari 9 WebView Android 38 Chrome Android 38 Firefox Android 14 Opera Android 25 Safari iOS 9 Samsung Internet Android 3.0 nodejs 0.12
Set() without new throws Chrome 38 Edge 12 Firefox 42 IE 11 Opera 25 Safari 9 WebView Android 38 Chrome Android 38 Firefox Android 42 Opera Android 25 Safari iOS 9 Samsung Internet Android 3.0 nodejs 0.12
new Set(null) Chrome 38 Edge 12 Firefox 37 IE 11 Opera 25 Safari 9 WebView Android 38 Chrome Android 38 Firefox Android 37 Opera Android 25 Safari iOS 9 Samsung Internet Android 3.0 nodejs 0.12
0.12
0.10 Disabled
Disabled From version 0.10: this feature is behind the --harmony runtime flag.

图例

完整支持

完整支持

不支持

不支持

用户必须明确启用此特征。

用户必须明确启用此特征。

另请参阅

元数据

  • 最后修改: