ES6 提供了新的数据结构 Set.它类似于数组,但是成员的值都是唯一的,没有重复的值. const s = new Set(); [2,3,5,4,5,2,2].forEach(x => s.add(x)); // Set结构不会添加重复的值 for(let i of s) { console.log(i); } // ## 初始化 // 例一 可以接受一个数组作为参数 const set = new Set([1,2,3,4,4,]); // ...将一个数组转为用逗号分隔的参数序列 con…