ES6數組去重方法

今天來寫一個簡單的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

相關文章
相關標籤/搜索