📜  使用 JavaScript 的 Array 元素的 Sum 和 Product

📅  最后修改于: 2022-05-13 01:56:46.107000             🧑  作者: Mango

使用 JavaScript 的 Array 元素的 Sum 和 Product

给定一个数组,任务是使用 JavaScript 查找数组值的 Sum 和 Product。

简单方法:它使用一种简单的方法通过索引号访问数组元素,并使用循环通过 JavaScript 查找 Array 的值的总和和乘积。

示例 1:此示例使用一种简单的方法来使用 JavaScript 查找 Array 元素的总和。



  

    
        How to Find the sum of Values
        of an Array in JavaScript?
    

  

      
    

          GeeksForGeeks      

             

        How to Find the sum of Values         of an Array in JavaScript?     

           

        ----Given Array----
        [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]     

                       

                             

输出:

  • 在点击按钮之前:
  • 点击按钮后:

    示例 2:此示例使用一种简单的方法来使用 JavaScript 查找 Array 元素的乘积。

    
    
      
    
        
            How to Find the product of Values
            of an Array in JavaScript?
        
    
      
    
          
        

              GeeksForGeeks      

                 

            How to Find the product of Values         of an Array in JavaScript?     

               

            ----Given Array----
            [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]     

                           

                         

    输出:

    • 在点击按钮之前:
    • 点击按钮后:

    使用reduce()方法: JavaScript中的数组reduce()方法用于将数组缩减为单个值,并对数组的每个值(从左到右)和函数的返回值执行一个提供的函数存储在一个累加器中。

    句法:

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

    示例 1:此示例使用数组 reduce() 方法使用 JavaScript 查找 Array 的值的总和。

    
    
      
    
        
            How to Find the sum of Values
            of an Array in JavaScript?
        
    
      
    
          
        

              GeeksForGeeks      

                 

            How to Find the sum of Values         of an Array in JavaScript?     

               

            ----Given Array----
            [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]     

                           

               Sum:                          

    输出:

    • 在点击按钮之前:
    • 点击按钮后:

    示例 2:此示例使用数组 reduce() 方法使用 JavaScript 查找数组值的乘积。

    
    
      
    
        
            How to Find the product of Values
            of an Array in JavaScript?
        
    
      
    
          
        

              GeeksForGeeks      

                 

            How to Find the product of Values         of an Array in JavaScript?     

               

            ----Given Array----
            [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]     

                           

               Product:                           

    输出:

    • 在点击按钮之前:
    • 点击按钮后: