用于找出第一个符合条件的数组成员的位置,如果没有找到返回-1
let ary = [1, 5, 10, 15];
let index = ary.findIndex((value,index)=>value>9);
console.log(index); // 2
let ary = [1, 5, 10, 15];
let index = ary.findIndex((value,index)=>value>9);
console.log(index); // 2
本文标题:实例方法:findIndex()
本文链接:https://www.haomeiwen.com/subject/ukglektx.html
网友评论