Skip to content

Instantly share code, notes, and snippets.

@alibalbars
Created July 24, 2021 20:24
Show Gist options
  • Save alibalbars/22bce07a44304581e897230bcccfd275 to your computer and use it in GitHub Desktop.
Save alibalbars/22bce07a44304581e897230bcccfd275 to your computer and use it in GitHub Desktop.
Sort Numbers
let numbers = [4, 2, 5, 1, 3];
numbers.sort((a, b) => a - b);
console.log(numbers); // [1, 2, 3, 4, 5]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment