Skip to content

Instantly share code, notes, and snippets.

@ryanseys
Created October 15, 2014 19:49
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 ryanseys/34ce9137a8aee3cd208c to your computer and use it in GitHub Desktop.
Save ryanseys/34ce9137a8aee3cd208c to your computer and use it in GitHub Desktop.
Google Sort
function googlesort(a, b) {
var order = ['1', 'S', 'Galaxy', 'Q', '7', '4', '10', '5', '6'];
return order.indexOf(a) > order.indexOf(b);
}
console.log(['10', '6', '5', '4'].sort(googlesort));
// [ '4', '10', '5', '6' ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment