Skip to content

Instantly share code, notes, and snippets.

@ahy4
Created March 9, 2017 13:36
Show Gist options
  • Save ahy4/70ae1a05b683af6c8a6514459c4bd216 to your computer and use it in GitHub Desktop.
Save ahy4/70ae1a05b683af6c8a6514459c4bd216 to your computer and use it in GitHub Desktop.
// bool*2-1
let ary = [1,2,3];
ary.sort((a, b) => (a>b)*2-1); // 小さい順
console.log(ary);
ary.sort((a, b) => a-b); // 小さい順
console.log(ary);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment