ES6后数组可以快速去重

25次阅读

共计 55 个字符,预计需要花费 1 分钟才能阅读完成。

let arr2 = Array.from(new set(arr1))
其中 arr1 是原数组,arr2 是去重后的新数组

正文完
 0