es6的一些筆記(數組去重,new Set())

new Set(),用來去重數組。 let arr = [1, 2, 2, 3]; let set = new Set(arr); let newArr = Array.from(set); console.log(newArr); // [1, 2, 3] Set相似於數組,區別在於它全部的成員都是惟一的,不能有重複的值
相關文章
相關標籤/搜索