數組中 reduce累計運算

let arr = [1,2,3,4];

let sum = (a, b) => a + b;

arr.reduce(sum, 0);

最後輸出10spa

相關文章
相關標籤/搜索