reduce()


reduce()方法同时对数组的两个值(从左到右)应用函数,以将其减少为单个值。

句法

array.reduce(callback[, initialValue]);

参数细节

  • callback - 要对数组中的每个值执行的函数。

  • initialValue - 用作第一次调用回调的第一个参数的对象。

返回值

返回数组的减少的单个值。

var total = [0, 1, 2, 3].reduce(function(a, b){ return a + b; });
console.log("total is : " + total );

输出

total is : 6