reduceRight()


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

语法

array.reduceRight(callback[, initialValue]);

参数细节

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

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

返回值

返回数组的右侧单个值。

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

输出

total is : 6