实例方法:findIndex()
2020-09-07 本文已影响0人
凡_6944
用于找出第一个符合条件的数组成员的位置,如果没有找到返回-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