Subtract the numbers in the array, starting from the end:
const numbers = [175, 50, 25];
document.getElementById("demo").innerHTML = numbers.reduceRight(myFunc);
function myFunc(total, num) {
return total - num;
}
Try it Yourself »
Subtract the numbers, right-to-left, and display the sum:
const numbers = [2, 45, 30, 100];
document.getElementById("demo").innerHTML = numbers.reduceRight(getSum);
function getSum(total, num) {
return total - num;
}
Try it Yourself »
The reduceRight()
method executes a reducer function for each array element.
The reduceRight()
method works from right to left.
The reduceRight()
method returns a single value: the function's accumulated result.
The reduceRight()
method does not execute the function for empty elements.
At the first callback, there is no return value from the previous callback.
Normally, the last array element is used as initial value, and the iteration starts from the element before.
If an initial value is supplied, this is used, and the iteration starts from last element.
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 |
The accumulated result from the last call of the callback function. |
reduceRight()
is an ECMAScript5 (ES5) feature.
ES5 (JavaScript 2009) fully supported in all browsers:
Chrome | Edge | Firefox | Safari | Opera | IE |
Yes | Yes | Yes | Yes | Yes | 9-11 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!