Answers for "js sort by date"

13

javascript order array by date

const sortedActivities = activities.sort((a, b) => b.date - a.date)
Posted by: Guest on April-16-2020
-1

Sort Date string in javascript

array.sort(function(o1,o2){
  if (sort_o1_before_o2)    return -1;
  else if(sort_o1_after_o2) return  1;
  else                      return  0;
});
Posted by: Guest on July-09-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language