-3
var frase = "The Lord of The Rings";
var letra = "o";
function vezesLetraAparece(frase, letra) {
var resultado = 0;
var indice;
for (indice = 0; indice < frase.lenght; indice++) {
if (letra === frase[indice]) {
resultado ++;
}
}
return resultado;
}
frase.lenght
=>frase.length
- You wrotelength
wrong...– Cmte Cardeal
And also forgot to call the function! :-)
– Luiz Felipe