Set
对象允许你存储任何类型的唯一值,无论是原始值或者是对象引用。
1 const set1 = new Set([1, 2, 3, 4, 5]); 2 3 console.log(set1.has(1)); 4 // expected output: true 5 6 console.log(set1.has(5)); 7 // expected output: true 8 9 console.log(set1.has(6)); 10 // expected output: false
语法
new Set([iterable]);
参数
- iterable
- 如果传递一个可迭代对象,它的所有元素将被添加到新的 Set中。如果不指定此参数或其值为null,则新的 Set为空。
返回值
一个新的Set
对象。
简述
Set
对象是值的集合,你可以按照插入的顺序迭代它的元素。 Set中的元素只会出现一次,即 Set 中的元素是唯一的。
值的相等
因为 Set 中的值总是唯一的,所以需要判断两个值是否相等。在ECMAScript规范的早期版本中,这不是基于和===操作符中使用的算法相同的算法。具体来说,对于 Set s, +0 (+0 严格相等于-0)和-0是不同的值。然而,在 ECMAScript 2015规范中这点已被更改。有关详细信息,请参阅浏览器兼容性 表中的“value equality for -0 and 0”。
另外,NaN
和undefined
都可以被存储在Set 中, NaN
之间被视为相同的值(尽管 NaN !== NaN)。
属性
Set.length
length
属性的值为0。get Set[@@species]
- 构造函数用来创建派生对象.
Set.prototype
- 表示Set构造器的原型,允许向所有Set对象添加新的属性。
Set
实例
所有Set实例继承自 Set.prototype
。
属性
Set.prototype.constructor
- 返回实例的构造函数。默认情况下是
Set
。 Set.prototype.size
- 返回
Set
对象的值的个数。
方法
Set.prototype.add(value)
- 在
Set对象尾部添加一个元素。返回该
Set对象。
Set.prototype.clear()
- 移除
Set
对象内的所有元素。 Set.prototype.delete(value)
移除Set的中与这个值相等的元素,返回Set.prototype.has(value)在这个操作前会返回的值(即如果该元素存在,返回true,否则返回false)。
Set.prototype.has(value)在此后会返回false。
Set.prototype.entries()
返回一个新的迭代器对象,该对象包含Set对象中的
按插入顺序排列的所有元素的值的[value, value]数组。为了使这个方法
和Map对象保持相似,
每个值的键和值相等。Set.prototype.forEach(callbackFn[, thisArg])
- 按照插入顺序,为Set对象中的每一个值调用一次callBackFn。如果提供了
thisArg参数,回调中的this会是这个参数。
Set.prototype.has(value)
- 返回一个布尔值,表示该值在
Set中存在与否。
Set.prototype.keys()
- 与
values()
方法相同,返回一个新的迭代器对象,该对象包含Set对象中的
按插入顺序排列的所有元素的值。
Set.prototype.values()
返回一个新的迭代器对象,该对象包含Set对象中的
按插入顺序排列的所有元素的值。
Set.prototype[@@iterator]()
返回一个新的迭代器对象,该对象包含Set对象中的
按插入顺序排列的所有元素的值。
示例
使用Set
对象
1 let mySet = new Set(); 2 3 mySet.add(1); // Set(1) {1} 4 mySet.add(5); // Set(2) {1, 5} 5 mySet.add(5); // Set { 1, 5 } 6 mySet.add("some text"); // Set(3) {1, 5, "some text"} 7 var o = {a: 1, b: 2}; 8 mySet.add(o); 9 10 mySet.add({a: 1, b: 2}); // o 指向的是不同的对象,所以没问题 11 12 mySet.has(1); // true 13 mySet.has(3); // false 14 mySet.has(5); // true 15 mySet.has(Math.sqrt(25)); // true 16 mySet.has("Some Text".toLowerCase()); // true 17 mySet.has(o); // true 18 19 mySet.size; // 5 20 21 mySet.delete(5); // true, 从set中移除5 22 mySet.has(5); // false, 5已经被移除 23 24 mySet.size; // 4, 刚刚移除一个值 25 console.log(mySet); // Set {1, "some text", Object {a: 1, b: 2}, Object {a: 1, b: 2}}
迭代Set
1 // 迭代整个set 2 // 按顺序输出:1, "some text" 3 for (let item of mySet) console.log(item); 4 5 // 按顺序输出:1, "some text" 6 for (let item of mySet.keys()) console.log(item); 7 8 // 按顺序输出:1, "some text" 9 for (let item of mySet.values()) console.log(item); 10 11 // 按顺序输出:1, "some text" 12 //(键与值相等) 13 for (let [key, value] of mySet.entries()) console.log(key); 14 15 // 转换Set为Array (with Array comprehensions) 16 var myArr = [v for (v of mySet)]; // [1, "some text"] 17 // 替代方案(with Array.from) 18 var myArr = Array.from(mySet); // [1, "some text"] 19 20 // 如果在HTML文档中工作,也可以: 21 mySet.add(document.body); 22 mySet.has(document.querySelector("body")); // true 23 24 // Set 和 Array互换 25 mySet2 = new Set([1,2,3,4]); 26 mySet2.size; // 4 27 [...mySet2]; // [1,2,3,4] 28 29 // intersect can be simulated via 30 var intersection = new Set([...set1].filter(x => set2.has(x))); 31 32 // difference can be simulated via 33 var difference = new Set([...set1].filter(x => !set2.has(x))); 34 35 // 用forEach迭代 36 mySet.forEach(function(value) { 37 console.log(value); 38 }); 39 40 // 1 41 // 2 42 // 3 43 // 4
Array
相关
1 var myArray = ["value1", "value2", "value3"]; 2 3 // 用Set构造器将Array转换为Set 4 var mySet = new Set(myArray); 5 6 mySet.has("value1"); // returns true 7 8 // 用...(展开操作符)操作符将Set转换为Array 9 console.log([...mySet]); // 与myArray完全一致
String
相关
1 var text = ‘Indiana‘; 2 3 var mySet = new Set(text); // Set {‘I‘, ‘n‘, ‘d‘, ‘i‘, ‘a‘} 4 mySet.size; // 5
原文地址:https://www.cnblogs.com/mycognos/p/9161918.html
时间: 2024-10-08 05:58:22