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/8f5682c4a91d89ceb378a3d793711ed9 to your computer and use it in GitHub Desktop.
Save parzibyte/8f5682c4a91d89ceb378a3d793711ed9 to your computer and use it in GitHub Desktop.
const arreglo = [1, 2, 50,10];
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