Skip to content

Instantly share code, notes, and snippets.

@lelouchB
Created July 21, 2019 08:31
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 lelouchB/35bb19a7cad6d017c3b17c5d698b9c31 to your computer and use it in GitHub Desktop.
Save lelouchB/35bb19a7cad6d017c3b17c5d698b9c31 to your computer and use it in GitHub Desktop.
let num = [25, 100, 23]
console.log(num.sort((a, b) => {
return a - b
}))
//[ 23, 25, 100 ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment