JS中some()和every()和join()和concat()和pop(),push(),shift(),unshfit()和map()和filter()

1、some()和every()

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

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

var array = [1,3,5,7,9,11,13,15,17] undefined array.some(function(item,index){ return item>9 }) //true

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wpgwxy.html