@@ -13,7 +13,7 @@ function vowels(str) {
13
14
let count = 0
15
16
-for(let char of str){
+for(let char of str.toLowerCase()){
17
if(vowelCheck.includes(char)) count++
18
}
19
0 commit comments