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


JavaScript Array reduceRight()用法及代碼示例


下麵是Array reduceRight()方法的示例。

  • 例:
    <!DOCTYPE html> 
    <html> 
          
    <head> 
        <title> 
            JavaScript Array reduceRight() Method 
        </title> 
    </head> 
      
    <body style="text-align:center;"> 
          
        <h1 style="color:green;">GeeksforGeeks</h1> 
          
        <p> 
            Click here to get the Subtract 
            of array elements from the left side 
        </p> 
          
        <button onclick="myGeeks()"> 
            Click Here! 
        </button> 
          
        <br><br> 
          
        Subtract:<span id="GFG"></span> 
          
        <!-- Script to use reduceRight method -->
        <script> 
            var arr = [175, 50, 25]; 
      
            function subofArray(total, num) { 
                return total - num; 
            } 
            function myGeeks(item) { 
                document.getElementById("GFG").innerHTML 
                        = arr.reduceRight(subofArray); 
            } 
        </script> 
    </body> 
      
    </html>          
  • 輸出:

JavaScript中的arr.reduceRight()方法用於將給定數組的元素從右到左轉換為單個值。

用法:

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

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

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

範例1:本示例使用reduceRight()方法返回從右開始的所有數組元素的減法。



<!DOCTYPE html> 
<html> 
      
<head> 
    <title> 
        JavaScript Array reduceRight() Method 
    </title> 
</head> 
  
<body style="text-align:center;"> 
      
    <h1 style="color:green;">GeeksforGeeks</h1> 
      
    <p> 
        Click here to get the Subtract 
        of array elements from right 
    </p> 
      
    <button onclick="myGeeks()"> 
        Click Here! 
    </button> 
      
    <br><br> 
      
    Subtract:<span id="GFG"></span> 
      
    <!-- Script to use reduceRight method -->
    <script> 
        var arr = [10, 20, 30, 40, 50, 60]; 
  
        function subofArray(total, num) { 
            return total - num; 
        } 
        function myGeeks(item) { 
            document.getElementById("GFG").innerHTML 
                    = arr.reduceRight(subofArray); 
        } 
    </script> 
</body> 
  
</html>                 

輸出:

範例2:本示例使用reduceRight()方法返回所有數組元素的舍入和。該代碼執行的總和不受reduceRight()方法的影響。

<!DOCTYPE html> 
<html> 
      
<head> 
    <title> 
        JavaScript Array reduceRight() Method 
    </title> 
</head> 
  
<body style="text-align:center;"> 
      
    <h1 style="color:green;">GeeksforGeeks</h1> 
      
    <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.reduceRight(sumofArray, 0); 
        } 
    </script> 
</body> 
  
</html>                    

輸出:

支持的瀏覽器:下麵列出了JavaScript Array reduceRight()方法支持的瀏覽器:

  • 穀歌瀏覽器
  • Microsoft Edge 9.0
  • Mozilla Firefox 3.0
  • Safari 4.0
  • Opera 10.5




相關用法


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