Created
March 25, 2021 05:17
-
-
Save pablotolentino/db49f0a42827a76572d07f8a353c17f4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const numeros = [3, 23, 12]; | |
numeros.sort(function(a, b){return a - b}); // --> 3, 12, 23 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment