function VowelCount(str) {
var counter=0;
for(i=0; i<str.length; i++)
{
if (/[AEIOUaeiou]/g.test(str[i]))
{
counter += 1;
}
}
return counter;
}
VowelCount("aaaeeebziiiooouu");
这在 repl.it 上返回“14”,但在 coderbyte 上只返回“7”。
我错过了什么?