Solución
solution.tsTypeScript
export function countWordsEndingWithVowel(words: string[]): number {
// Escribe tu solución aquí
let contador =0;
words.forEach((palabra)=> {
if(/[aeiou]/i.test(palabra.charAt(palabra.length -1))){
contador++
}
})
return contador;
}0respuestas