Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 10, 2021 18:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/4d8eea0e3686e178532dbe8ff58880db to your computer and use it in GitHub Desktop.
Save parzibyte/4d8eea0e3686e178532dbe8ff58880db to your computer and use it in GitHub Desktop.
const contarVocales = palabra => {
// https://parzibyte.me/blog
const vocales = "aáeéiíoóuú";
let cantidadVocales = 0;
for (const letra of palabra) {
if (vocales.includes(letra.toLowerCase())) {
cantidadVocales++;
}
}
return cantidadVocales;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment