Saturday, November 15, 2025
HomeLanguagesJavascriptTypeScript | Array reduceRight() Method

TypeScript | Array reduceRight() Method

The Array.reduceRight() is an inbuilt TypeScript function which is used to apply a function against two values of the array as to reduce it to a single value in a right to left manner. 
Syntax:

array.reduceRight(callback[, initialValue])

Parameter: This method accept two parameter as mentioned above and described below:

  • callback : This parameter is the Function to execute on each value in the array.
  • initialValue : This parameter is the Object to use as the first argument to the first call of the callback.

Return Value: This method returns the reduced right single value of the array. 
Below examples illustrate the Array reduceRight() method in TypeScript

Example 1: 

JavaScript




<script>
    // Driver code
    var arr = [ 11, 89, 23, 7, 98 ]; 
  
    // use of reduceRight() method 
    var val = arr.reduceRight(function(a, b)
    
        return a - b; 
    });
       
    // printing element
    console.log( val );
</script>


Output: 

-32

Example 2: 

JavaScript




<script>
    // Driver code
    var arr = [2, 5, 6, 3, 8, 9]; 
    var val;
   
    // use of reduceRight() method 
    val = arr.reduceRight(function(a, b)
    
        return a/b; 
    });
       
    // printing element
    console.log( val );
</script>


Output: 

0.00625

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11917 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6890 POSTS0 COMMENTS
Ted Musemwa
7143 POSTS0 COMMENTS
Thapelo Manthata
6838 POSTS0 COMMENTS
Umr Jansen
6840 POSTS0 COMMENTS