Answers for "js array sort by date and time"

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 array of objects javascript by date

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);
});
Posted by: Guest on May-11-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language