数组中的元素均为 Number 类型
[ 1, 2, 3, 4 ]
10
function sum(arr) { let sum=0; arr.forEach(x=>{ sum+=x; }); return sum; }
02.计算数组元素之和
原文:https://www.cnblogs.com/WP-WangPin/p/14053335.html