Answers for "dsrtby date and time js code"

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
-1

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;
});
Posted by: Guest on July-09-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language