Answers for "how to sort array using date type"

6

sort array by date typescript

array.sort((x, y) => +new Date(x.createdAt) - +new Date(y.createdAt));
Posted by: Guest on November-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

Code answers related to "how to sort array using date type"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language