Skip to content

Instantly share code, notes, and snippets.

@lelouchB
Created July 21, 2019 08:24
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/4dc3991d2510ef3c6d2b155620fe7b76 to your computer and use it in GitHub Desktop.
Save lelouchB/4dc3991d2510ef3c6d2b155620fe7b76 to your computer and use it in GitHub Desktop.
let num1 = [25, 100, 23]
console.log(num1.sort()) //[ 100, 23, 25 ]
let num2 = ['25', '100', '23']
console.log(num2.sort()) //[ '100', '23', '25' ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment