數組去重,ES6數組去重 new Set()

普通數組去重     var b = [...new Set([1,2, 3, 4, 5, 5, 5, 5])]     console.log(b); 輸出結果:數組   包含對象的數組去重 var o ={a:1} var b = [...new Set([o, o, 3, 4, 5, 5, 5, 5])] console.log(b); 輸出結果:code   包含對象的數
相關文章
相關標籤/搜索