Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 7, 2019 21:23
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/482c7b0f8388777f45ad2b039bdb4de4 to your computer and use it in GitHub Desktop.
Save parzibyte/482c7b0f8388777f45ad2b039bdb4de4 to your computer and use it in GitHub Desktop.
let cadena = "En español tenemos a la letra ñ y Ñ, así como las letras con tildes";
let minusculas = cadena.toLowerCase();
let mayusculas = cadena.toUpperCase();
console.log("En minúscula: %s", minusculas);
console.log("En mayúscula: %s", mayusculas);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment