當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Javascript Array reduce()用法及代碼示例


JavaScript中的數組reduce()方法用於將數組簡化為單個值,並為該數組的每個值(從左到右)執行提供的函數,該函數的返回值存儲在累加器中。

用法:

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

參數:此方法接受上述和以下所述的兩個參數:


  • function(total, currentValue, index, arr):它是必需的參數,用於對數組的每個元素運行。它包含以下列出的四個參數:
    • total:它是必需的參數,用於指定initialValue或函數的先前返回的值。
    • currentValue:它是必需的參數,用於指定當前元素的值。
    • currentIndex:它是可選參數,用於指定當前元素的數組索引。
    • arr:它是可選參數,用於指定當前元素所屬的數組對象。
  • initialValue:它是可選參數,用於指定要傳遞給函數的值作為初始值。

範例1:本示例使用reduce()方法返回所有數組元素的總和。

<!DOCTYPE html> 
<html> 
      
<head> 
    <title> 
        JavaScript Array reduce() Method 
    </title> 
</head> 
  
<body style="text-align:center;"> 
      
    <h2>GeeksForGeeks</h2> 
      
    <p> 
        Click here to get the sum 
        of array elements 
    </p> 
      
    <button onclick="myGeeks()"> 
        Click Here! 
    </button> 
      
    <br><br> 
      
    Sum:<span id="GFG"></span> 
      
    <!-- Script to use reduce method -->
    <script> 
        var arr = [10, 20, 30, 40, 50, 60]; 
   
        function sumofArray(sum, num) { 
            return sum + num; 
        } 
        function myGeeks(item) { 
            document.getElementById("GFG").innerHTML 
                    = arr.reduce(sumofArray); 
        } 
    </script> 
</body> 
  
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:

範例2:本示例使用reduce()方法返回所有數組元素的舍入和。

<!DOCTYPE html> 
<html> 
      
<head> 
    <title> 
        JavaScript Array reduce() Method 
    </title> 
</head> 
  
<body style="text-align:center;"> 
      
    <h2>GeeksForGeeks</h2> 
      
    <p> 
        Click here to get the sum 
        of array elements 
    </p> 
      
    <button onclick="myGeeks()"> 
        Click Here! 
    </button> 
      
    <br><br> 
      
    Sum:<span id="GFG"></span> 
      
    <!-- Script to use reduce method -->
    <script> 
        var arr = [1.5, 20.3, 11.1, 40.7]; 
   
        function sumofArray(sum, num) { 
            return sum + Math.round(num); 
        } 
        function myGeeks(item) { 
            document.getElementById("GFG").innerHTML 
                    = arr.reduce(sumofArray, 0); 
        } 
    </script> 
</body> 
  
</html>                    

輸出:
在單擊按鈕之前:

單擊按鈕後:



相關用法


注:本文由純淨天空篩選整理自rathbhupendra大神的英文原創作品 JavaScript | Array reduce() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。