Solución
solution.tsTypeScript
export function countWordsEndingWithVowel(words: string[]): number {
const vocals = 'aeiou';
let count = 0;
for(let word of words){
if(vocals.includes(word.toLowerCase().charAt(word.length-1))) count++
}
// Escribe tu solución aquí
return count;
}0respuestas