📜  使用 JavaScript 查找 Array 元素的 OR 和 AND

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

使用 JavaScript 查找 Array 元素的 OR 和 AND

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

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

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

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

          GeeksForGeeks      

             

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

             

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

                          

                         

输出:
点击按钮之前:

点击按钮后:

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

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

          GeeksForGeeks      

             

          How to Find the AND 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 查找数组值的 OR。

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

          GeeksForGeeks      

             

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

             

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

                          

             OR:                              

输出:
在点击按钮之前:

点击按钮后:

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

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

          GeeksForGeeks      

             

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

             

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

                          

             AND:                              

输出:
在点击按钮之前:

点击按钮后: