sort dates in javascript code example

Example 1: javascript order array by date

const sortedActivities = activities.sort((a, b) => b.date - a.date)

Example 2: sort data according to date in js

array.sort(function(a,b){
  // Turn your strings into dates, and then subtract them
  // to get a value that is either negative, positive, or zero.
  return new Date(b.date) - new Date(a.date);
});

Example 3: 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;
});