JS中every()和some()的用法
Posted Boom__Clap
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS中every()和some()的用法相关的知识,希望对你有一定的参考价值。
every()与some()方法都是JS中数组的迭代方法。
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()的用法的主要内容,如果未能解决你的问题,请参考以下文章
温习js中的for,forEach,map, some, every用法总结,跳出循环方法
JS ECMAScript 5中的every 和 some方法进行逻辑判断