ES6 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

reverse()方法反转数组的元素。第一个数组元素成为最后一个,最后一个成为第一个。语法array.reverse();返回值返回数组的反转单值。例var arr = [0, 1, 2, 3].reverse( ...