Answers for "javascript sort array by date and time"

6

sort by date js

array.sort((a,b) =>  new Date(b.date) - new Date(a.date));
Posted by: Guest on June-18-2021
13

javascript order array by date

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

how to sort array by dates

var array = [{id: 1, date:'Mar 12 2012 10:00:00 AM'}, {id: 2, date:'Mar 8 2012 08:00:00 AM'}];


array.sort(function(a, b) {
    var c = new Date(a.date);
    var d = new Date(b.date);
    return c-d;
});
Posted by: Guest on August-07-2021
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
-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 sort array by date and time"

Code answers related to "Javascript"

Browse Popular Code Answers by Language