今天來寫一個簡單的ES6去重的方法console
let arr = [1,2,3,4,5,5,5,5,5,6,7]方法
[...new Set(arr)]co
console.log([...new Set(a)]) // [1, 2, 3, 4, 5, 6, 7]let