Answers for "sort by name object array javascript"

11

javascript sort array of object by property

function sortByDate( a, b ) {
  if ( a.created_at < b.created_at ){
    return -1;
  }
  if ( a.created_at > b.created_at ){
    return 1;
  }
  return 0;
}

myDates.sort(sortByDate);//myDates is not sorted.
Posted by: Guest on February-11-2020
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 name object array javascript"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language