Friday, September 5, 2025
HomeLanguagesJavascriptTypeScript Array reduce() Method

TypeScript Array reduce() Method

The Array.reduce() 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. 
Syntax:

array.reduce(callback[, initialValue])

Parameter: This method accept two parameter as mentioned 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 single value of the array. 
Below examples illustrate the  Array reduce() method in TypeScript

Example 1: 

JavaScript




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


Output: 

228

Example 2: 

JavaScript




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


Output: 

405
RELATED ARTICLES

Most Popular

Dominic
32269 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6638 POSTS0 COMMENTS
Nicole Veronica
11802 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11866 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7027 POSTS0 COMMENTS
Thapelo Manthata
6704 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS