Created
December 2, 2015 16:33
-
-
Save taka011239/6dae8437e5c10d4062cc 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
'use strict'; | |
let arr = [10, 2, 5, 8, 6, 1, 3]; | |
// ASCE | |
arr.sort((a, b) => a - b); | |
console.log(arr); | |
// DESC | |
arr.sort((a, b) => b - a); | |
console.log(arr); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment