Answers for "sort array object age also name"

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
7

sort array of objects in ascending order in js

homes.sort(function(a, b) {
    return parseFloat(a.price) - parseFloat(b.price);
});
Posted by: Guest on March-17-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language