马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
var ar='ojkjkjkosas',j=0;
while( ar.indexOf('0',j) !==-1 ){
console.log( ar.indexOf('o') );
j++;
}
console.log('o出现的次数'+j);
小黄练编程 发表于 2022-3-27 10:17
你写的方法问题:每一次循环的时候都是从 j 的值为下标开始查找的,所以,当j=8的时候找不到了。
方法1,对象遍历:
Object.keys(ar).forEach(key => {
if (ar[key] === 'o') {
j++
console.log(key) // 打印结果:0, 7
}
})
console.log(j) //打印结果:2
方法2,拆成数组再遍历:
ar.split('').forEach((item,index) => {
if (item === 'o') {
j++
console.log(index) // 打印结果:0,7
}
})
console.log(j) // 打印结果:2
|