Skip to content

Instantly share code, notes, and snippets.

@phaistonian
Created May 8, 2013 19:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phaistonian/5542793 to your computer and use it in GitHub Desktop.
Save phaistonian/5542793 to your computer and use it in GitHub Desktop.
d2_min_take 2
[ '20', '3', '30', '10' ].sort(function (a, b) {
return a == b ? 0 : (a < b ? -1 : 1);
})[0];
[ 20, 3, 30, 10 ].sort(function (a, b) {
return a == b ? 0 : (a < b ? -1 : 1);
})[0];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment