JS数组的find()和some()方法
2021-01-19 23:13
标签:com html 方法 ges 条件 返回 数组 pre innerhtml some()是在数组中找是否有符合条件的元素 find()是在数组中找第一个符合条件的元素 Reference: https://www.runoob.com/jsref/jsref-some.html https://www.runoob.com/jsref/jsref-some.html JS数组的find()和some()方法 标签:com html 方法 ges 条件 返回 数组 pre innerhtml 原文地址:https://www.cnblogs.com/lichtung/p/12905897.htmlvar 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
文章标题:JS数组的find()和some()方法
文章链接:http://soscw.com/index.php/essay/44271.html