var isVowel = false; for (var j = 0; j < vowel.length; j++) { if (sentence[i] === vowel[j]) { isVowel = true; break; } } if(!isVowel) ...
確定! 回上一頁