Solución
solution.tsTypeScript
export function countWordsEndingWithVowel(words: string[]): number {
// Escribe tu solución aquí
let count = 0
for(let word of words){
if(/[aeiou]$/i.test(word)){
count++
}
}
return count;
}0respuestas