Skip to content

Instantly share code, notes, and snippets.

@m2web
Last active December 19, 2015 01:38
Show Gist options
  • Save m2web/5876837 to your computer and use it in GitHub Desktop.
Save m2web/5876837 to your computer and use it in GitHub Desktop.
DateSort steps with Jasmine
DateSort.prototype.sortedDesc = function(theArray){
return theArray.sort(date_sort_desc);
}
var date_sort_desc = function(a,b){
a = new Date(a.publishDate);
b = new Date(b.publishDate);
return a<b ? 1 : a>b ? -1 : 0;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment