sort by date javascript code example
Example 1: javascript sort on objects date
array = [{
id: 1, name: "test1", date: "2020-01-05",
id: 2, name: "test2", date: "2020-01-02"
}]
array.sort(function (a, b) {
var dateA = new Date(a.date), dateB = new Date(b.date)
return dateA - dateB
});
console.log(array) //array is now sorted by date
Example 2: javascript order array by date
const sortedActivities = activities.sort((a, b) => b.date - a.date)
Example 3: 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 4: sort date array javascript
const activities = [
{ title: 'Hiking', date: new Date('2019-06-28') },
{ title: 'Shopping', date: new Date('2019-06-10') },
{ title: 'Trekking', date: new Date('2019-06-22') }
]
Example 5: 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;
});