数组中的元素均为 Number 类型
[ 1, 2, 3, 4 ]
10
function sum(arr) { let sum=0; arr.forEach(x=>{ sum+=x; }); return sum; }