文章來源
Set 與去重
- 陣列去重
const arr = [3, 5, 2, 2, 5, 5];
const unique = [...new Set(arr)];
複製程式碼
- 陣列去重函式
function unique(array) {
return [...new Set(array)];
}
複製程式碼
- 字元去重
let str = [...new Set("ababbc")].join("");
console.log(str);
複製程式碼
陣列求和
let foo = [1, 2, 3, 4, 5];
//不優雅
function sum(arr) {
let x = 0;
for (let i = 0; i < arr.length; i++) {
x += arr[i];
}
return x;
}
sum(foo); // => 15
//優雅
foo.reduce((a, b) => a + b); // => 15
複製程式碼