Answers for "how to sort dates in an array of objects"

5

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
Posted by: Guest on November-30-2020
0

compare two dates and sort array of objects

your_array.sort ( (a, b) => {
      return new Date(a.DateTime) - new Date(b.DateTime);
});
Posted by: Guest on March-30-2021

Code answers related to "how to sort dates in an array of objects"

Code answers related to "Javascript"

Browse Popular Code Answers by Language