第 33 题:如何去掉一组整型数组重复的值?

利用 ES6 新增的数据结构 Set 实现

let arr = [20, 28, 28, 30, 28, 50, 40];
let res = [...new Set(arr)];

console.log(res); // [20, 28, 30, 50, 40]

文章的内容/灵感都从下方内容中借鉴

你可能感兴趣的:(html)