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

every()与some()方法都是JS中数组的迭代方法,方法用于检测数组所有元素是否都符合指定条件(通过函数提供),会检测数组中的所有元素

every()是对数组中每一项运行给定函数,如果该函数对每一项返回true,则返回true。
1.如果数组中检测到有一个元素不满足,则整个表达式返回 false ,且剩余的元素不会再进行检测。
2.如果所有元素都满足条件,则返回 true。

some()是对数组中每一项运行给定函数,如果该函数对任一项返回true,则返回true。
1.如果有一个元素满足条件,则表达式返回true , 剩余的元素不会再执行检测。
2.如果没有满足条件的元素,则返回false。

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; 
})); // true

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

胡少龙
50 声望7 粉丝