JS数组的find()和some()方法

Posted 林中空地

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS数组的find()和some()方法相关的知识,希望对你有一定的参考价值。

var ages = [3, 10, 18, 20];

function checkAdult(age) {
    return age >= 18;
}

function myFunction() {
    document.getElementById("demo").innerhtml = ages.some(checkAdult);
}
//输出结果:true

function myFunction() {
    document.getElementById("demo").innerHTML = ages.find(checkAdult);
}
//输出结果:18

some()是在数组中找是否有符合条件的元素

  • 如果有一个元素满足条件,则表达式返回true , 剩余的元素不会再执行检测。
  • 如果没有满足条件的元素,则返回false。

find()是在数组中找第一个符合条件的元素

  • 当数组中的元素在测试条件时返回 true 时, find() 返回符合条件的元素,之后的值不会再调用执行函数。
  • 如果没有符合条件的元素返回 undefined。

Reference:

https://www.runoob.com/jsref/jsref-some.html

https://www.runoob.com/jsref/jsref-some.html

以上是关于JS数组的find()和some()方法的主要内容,如果未能解决你的问题,请参考以下文章

JS中find(), findIndex(), filter(), forEach(), some(), every(), map()方法

html JS Arrays方法 - some / every / find / findIndex

JS数组方法some()和every()的区别

js遍历数组some()方法

Js遍历数组总结

JS数组对象循环遍历方法