去重操作 第一种方式, ES 6 引入的新书据结构 Set 本身就是没有重复数据的, 可以使用这个数据结构来转化数组.时间复杂度 O(n) 123456 const target = [];const sourceArray = [1,1,2,3,4,2,3,4,5,6,5,7];new Set(sourceArray).forEach(current => { target.push(current);});console.log(target); // [ 1, 2, 3, 4, 5, 6,