"typescript" sort object array by date property 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: 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);
});