Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 4, 2019 15:42
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/71d9175ce4585ba5f59308336769f74a to your computer and use it in GitHub Desktop.
Save parzibyte/71d9175ce4585ba5f59308336769f74a to your computer and use it in GitHub Desktop.
const arreglo = ["María", "Luis", "Alberto", "Maggie"];
console.log("Antes de ordenar: ", arreglo);
arreglo.sort();
console.log("Después de ordenar: ", arreglo);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment