JS中every()和some()的用法

every()与some()方法都是JS(ES6)中数组的迭代方法。

原理:every()是对数组中每一项运行给定函数,如果该函数对每一返回true,则返回true。

原理:some()是对数组中每一项运行给定函数,如果该函数对任一返回true,则返回true。

用法:

  var arr = [ 1, 2, 3, 4, 5, 6 ]; 

   console.log( arr.some( function( item, index, array ){ 
    console.log( ‘item=‘ + item + ‘,index=‘+index+‘,array=‘+array ); 
    return item > 3; 
  })); 
  console.log( arr.every( function( item, index, array ){ 
    console.log( ‘item=‘ + item + ‘,index=‘+index+‘,array=‘+array ); 
    return item > 3; 
  }));

JS中every()和some()的用法

上一篇:.Net Core5.0 集成注册依赖注入


下一篇:leetcode(73)_1784_easy_检查二进制字符串字段_python