Skip to content

Instantly share code, notes, and snippets.

@adamkdean
Created April 10, 2014 10:00
Show Gist options
  • Save adamkdean/10363787 to your computer and use it in GitHub Desktop.
Save adamkdean/10363787 to your computer and use it in GitHub Desktop.
return (isNaN(ai) || isNaN(bi))
? a > b
? 1
: a < b
? -1
: 0
: ai > bi
? 1
: ai < bi
? -1
: 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment