Skip to content

Instantly share code, notes, and snippets.

@dsdstudio
Created October 27, 2014 10:15
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 dsdstudio/e8fd67e4e1f64b161c25 to your computer and use it in GitHub Desktop.
Save dsdstudio/e8fd67e4e1f64b161c25 to your computer and use it in GitHub Desktop.
javascript sort
page = page.sort(function(a, b) {
var $a = a.SEQ || 0;
var $b = b.SEQ || 0;
if ( $a == $b ) return 0;
if ( $a < $b ) return -1;
return 1;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment