Skip to content

Instantly share code, notes, and snippets.

@taka011239
Created December 2, 2015 16:33
Show Gist options
  • Save taka011239/6dae8437e5c10d4062cc to your computer and use it in GitHub Desktop.
Save taka011239/6dae8437e5c10d4062cc to your computer and use it in GitHub Desktop.
'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