摘要: 例子: const set = new Set(); [2, 3, 5, 4, 5, 2, 2].forEach(x => set.add(x) ); const arr = [...set]; console.log(arr); // [ 2, 3, 5, 4 ] 稍做一下解释: 因为,ES6 提 阅读全文
posted @ 2018-03-05 12:07 驸马爷 阅读(237) 评论(0) 推荐(0) 编辑