Answers for "sort array of squares objects javascript by key"

1

sort array of objects by 2 key value

homes.sort(
   function(a, b) {          
      if (a.city === b.city) {
         // Price is only important when cities are the same
         return b.price - a.price;
      }
      return a.city > b.city ? 1 : -1;
   });
Posted by: Guest on June-05-2020
1

javascript sort array of objects by value of key in object

//Sort Objects in array Descending order
const sortDesc(a,b) => {
  return b.timestamp - a.timestamp;
}

//Sort Objects in array Ascending order
const sortAsc(a,b) => {
  return a.timestamp - b.timestamp;
}

<Array>.sort(sortAsc);
<Array>.sort(sortDesc);
Posted by: Guest on December-14-2021

Code answers related to "sort array of squares objects javascript by key"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language