怎么通过 isRight = ture 找到他在的下标?
回答
如果一组数据中 isRight === true
只有一个,那就用这个array.findIndex( a => a.isRight === true)
否则就迭代一遍吧
function getIdx(data) { let temp = null
for(let i=0; i<data.length; i++) {
if(data[i].isRight) {
temp = i;
break;
}
}
return temp;
}
const array = [{},{isRight: true},{}];const rightIndex = array.findIndex(item => item.isRight)
以上是 怎么通过 isRight = ture 找到他在的下标? 的全部内容, 来源链接: utcz.com/a/41737.html