用于保持数组的唯一性
// test1
const arr = [1, 1, 2, 3, 4, 3]
// 是一个new Set对象
const arr1 = new Set(arr)
console.log(arr1);
// test2
const brr = [1, 1, 2, 3, 4, 3]
// 现在是数组对象了
const brr1 = [...new Set(brr)]
console.log(brr1);
总结
使用new Set后获得的是个new Set对象,不是数组对象,要通过展开式将其放入到数组中变成数组对象