const array1 = [1,2,3,4,5,6];
const initialValue = 0;
const sumValue = array1.reduce((s,n)=>s+n,initialValue);
console.log(sumValue); //输出结果
//上面是 array.reduce的使用方法

//下面我们写一个函数,来计算传入这个函数的所有参数的和
function sumArray(...args){
console.log(args); // [ 1, 2, 3, 4, 5, 6 ]
//因为接受到的值是数组,那么如果我想把数组里面的数字累加,
//就可以使用上面的那个方法
const a = args.reduce((s,n)=>s+n,0);
return a;
}
let respond = sumArray(1,2,3,4,5,6);
console.log(respond); //输出结果