阅读量:3
在JavaScript中,可以使用以下方法来使用new Set()
:
- 创建一个空的Set对象:
const set = new Set();
- 使用一个可迭代对象(如数组)来初始化Set对象:
const set = new Set([1, 2, 3]);
- 向Set对象中添加元素:
set.add(4);
- 从Set对象中删除元素:
set.delete(2);
- 检查Set对象中是否包含某个元素:
set.has(3);
- 获取Set对象中元素的数量:
set.size;
- 遍历Set对象的所有元素:
set.forEach(item => console.log(item));
- 将Set对象转换为数组:
const array = Array.from(set);