Answers for "sort array by field"

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

sort array by field

function cmp($a, $b)
{
    return strcmp($a["title"], $b["title"]);
}

usort($array, "cmp");
Posted by: Guest on December-16-2019

Code answers related to "Javascript"

Browse Popular Code Answers by Language