Skip to content

Instantly share code, notes, and snippets.

@arrbxr
Created April 27, 2018 09:50
Show Gist options
  • Select an option

  • Save arrbxr/e01f9ef40aab229641eefe9a74471eab to your computer and use it in GitHub Desktop.

Select an option

Save arrbxr/e01f9ef40aab229641eefe9a74471eab to your computer and use it in GitHub Desktop.
sort array with sort created by arrbxr - https://repl.it/@arrbxr/sort-array-with-sort
var array = [1, 12, 21, 2];
array.sort(function(a,b){
return b - a;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment