ES6 Set進行數組去重

廢話不說直接上代碼web let a=[1,2,3,4,5,6,1,2,3,2,1,2] let b=new Set() let c=[]; a.forEach(function (value,key,arr){ b.add(value) }) b.forEach(function (value,key,set) {
相關文章
相關標籤/搜索