标签:com html 方法 ges 条件 返回 数组 pre innerhtml
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()是在数组中找是否有符合条件的元素
find()是在数组中找第一个符合条件的元素
Reference:
https://www.runoob.com/jsref/jsref-some.html
https://www.runoob.com/jsref/jsref-some.html
标签:com html 方法 ges 条件 返回 数组 pre innerhtml
原文地址:https://www.cnblogs.com/lichtung/p/12905897.html