VOOZH about

URL: https://www.geeksforgeeks.org/javascript/javascript-array-reduceright-method/

⇱ JavaScript Array reduceRight() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

JavaScript Array reduceRight() Method

Last Updated : 11 Jul, 2025

The Javascript arr.reduceRight() method in JavaScript is used to convert elements of the given array from right to left to a single value.

Syntax:

array.reduceRight( function(total, currentValue, currentIndex, arr), 
initialValue )

Parameters:

This method accepts five parameters as mentioned above and described below: 

  • function(total, currentValue, index, arr): It is the required parameter and is used to run for each element of the array. It contains four parameters which are listed below: 
    • total: It is a required parameter and used to specify the initialValue or the previously returned value of the function.
    • currentValue: It is a required parameter and is used to specify the value of the current element.
    • currentIndex: It is an optional parameter and is used to specify the array index of the current element.
    • arr: It is an optional parameter and is used to specify the array object the current element belongs to.
  • initialValue: It is an optional parameter and is used to specify the value to be passed to the function as the initial value.

Example 1: In this example, we will be using the reduce() method to find the difference between the elements of the array.


Output
-200

Example 2: This example uses reduceRight() method to return the difference of all array elements from the right.  


Output
-90

Example 3: This example use reduceRight() method to return the round sum of all array elements. The code performs a sum that does not affect by the reduceRight() method. 


Output
74

We have a complete list of Javascript Array methods, to check those please go through this Javascript Array Complete reference article.

Supported Browsers:

The browsers supported by the JavaScript Array reduceRight() method are listed below: 

  • Google Chrome 3
  • Microsoft Edge 12
  • Mozilla Firefox 3.0
  • Safari 5
  • Opera 10.5
Comment