ES6數組去重及ES5數組去重方法

參考地址:http://www.cnblogs.com/thinkingthigh/p/9711736.htmlhtml 去重web // ES6:使用Set 對象 let array = [1, 1, 1, 1, 2, 3, 4, 4, 5, 3]; let set = new Set(array); console.log(set); // ES5: 使用forEach 遍歷, i
相關文章
相關標籤/搜索