利用 ES6 新增的数据结构 Set 实现
let arr = [20, 28, 28, 30, 28, 50, 40];
let res = [...new Set(arr)];
console.log(res); // [20, 28, 30, 50, 40]
利用 ES6 新增的数据结构 Set 实现
let arr = [20, 28, 28, 30, 28, 50, 40];
let res = [...new Set(arr)];
console.log(res); // [20, 28, 30, 50, 40]
相关阅读