Answers for "array object sort by date"

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
13

sort array by date

const sortedActivities = activities.sort((a, b) => b.date - a.date)
Posted by: Guest on April-16-2020
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
0

array object sort by date

var compareDate = (t1: Interface, t2: Interface) => {
      var t1Date = new Date(t1.createDate);
      var t2Date = new Date(t2.createDate);
      return t1Date > t2Date ? -1 : 1;
    };

    arr = [...objectarr].sort(compareDate);
Posted by: Guest on July-27-2021

Code answers related to "array object sort by date"

Code answers related to "Javascript"

Browse Popular Code Answers by Language