从数组末尾开始减去数组中的数字:
const numbers = [175, 50, 25];
document.getElementById("demo").innerHTML = numbers.reduceRight(myFunc);
function myFunc(total, num) {
return total - num;
}
亲自试一试 »
从右到左减去数字并显示总和:
const numbers = [2, 45, 30, 100];
document.getElementById("demo").innerHTML = numbers.reduceRight(getSum);
function getSum(total, num) {
return total - num;
}
亲自试一试 »
这个reduceRight()
方法为每个数组元素执行一个reducer函数。
这个reduceRight()
方法从右向左进行。
这个reduceRight()
方法返回单个值:函数的累积结果。
这个reduceRight()
方法不会对空元素执行该函数。
在第一个回调中,前一个回调没有返回值。
一般情况下,数组的最后一个元素作为初始值,从前一个元素开始迭代。
如果提供了初始值,则使用该值,并且迭代从最后一个元素开始。
array.
reduceRight(
function(total, currentValue, currentIndex, arr), initialValue)
Parameter | Description | ||||||||
function() | Required. A function to be run for each element in the array. |
||||||||
Reducer function parameters:
|
|||||||||
initialValue | Optional. A value to be passed to the function as the initial value |
上次调用回调函数的累积结果。 |
reduceRight()
是 ECMAScript5 (ES5) 功能。
所有浏览器完全支持 ES5 (JavaScript 2009):
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | 9-11 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!