好记性不如烂笔头:记录一个es6写法的数组去重
数据结构Set
const diffArray=(arr)=>{ var s = new Set(); arr.forEach(x => s.add(x)); return [...s]; }
测试结果