Set實例的方法分為兩大類:操作方法(用于操作數(shù)據(jù))和遍歷方法(用于遍歷成員)府瞄,操作方法有:add(value)、delete(value)碘箍、has(value)遵馆、clear();遍歷方法有:keys()敲街、values()团搞、entries()、forEach()
1多艇、ES6——new Set方法
const myArray = [1,1,2,2,3,3,4,4,5,5]
console.log([...new Set(myArray )]);// [1, 2, 3, 4, 5]
2逻恐、Array.from(該方法可以將 Set 結(jié)構(gòu)轉(zhuǎn)為數(shù)組)
function dedupe(array) {
return Array.from(new Set(array));
}
dedupe([1, 1, 2, 3]) // [1, 2, 3]