04-15 IndexOf 举例代码有误
Dafeigy opened this issue · 1 comments
Dafeigy commented
案例:查找字符串"qianguyihao"中,所有a
出现的位置以及次数。
var str = 'qianguyihao';
var index = str.indexOf('a');
var num = 0;
while (index !== -1) {
console.log(index);
num++; // 每打印一次,就计数一次
index = str.indexOf('o', index + 1); // 这里应该是str.indexOf('a', index + 1)
}
console.log('a 出现的次数是: ' + num);
qianguyihao commented
@Dafeigy 感谢指正,已修复。