Solución
solution.tsTypeScript
function vowelsAtEvenIndices(text: string): number {
// Escribe tu solución aquí
return text.split('').filter((e,i)=>'aeiouAEIOU'.includes(e) && i%2==0).length
}
// No modificar: necesario para evaluar el resultado.
export { vowelsAtEvenIndices };0respuestas