Answers for "sort by id list of objects js"

28

javascript sort in array of objects

// Price Low To High
array?.sort((a, b) => (a.price > b.price ? 1 : -1))
// Price High To Low
array?.sort((a, b) => (a.price > b.price ? -1 : 1))
// Name A to Z
array?.sort((a, b) => (a.name > b.name ? 1 : 1))
// Name Z to A
array?.sort((a, b) => (a.name > b.name ? -1 : 1))
// Sort by date
array.sort((a,b) =>  new Date(b.date) - new Date(a.date));
Posted by: Guest on November-03-2021
0

order array of objects by id javascript

items.sort(function(a, b) { 
  return a.id - b.id  ||  a.name.localeCompare(b.name);
});
Posted by: Guest on September-07-2021

Code answers related to "sort by id list of objects js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language