0
Q:

sort array by date

const sortedActivities = activities.sort((a, b) => b.date - a.date)
5
array.sort(function(o1,o2){
  if (sort_o1_before_o2)    return -1;
  else if(sort_o1_after_o2) return  1;
  else                      return  0;
});
-1

New to Communities?

Join the community