当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。