📜  es6数组求和javascript代码示例

📅  最后修改于: 2022-03-11 15:01:09.310000             🧑  作者: Mango

代码示例4
const arrSum = arr.reduce((a,b) => a + b, 0);