Answers for "how to sort an array of objects with specific keys"

3

array sort by key javascript

function sortByKey(array, key) {
  return array.sort((a, b) => {
    let x = a[key];
    let y = b[key];
    
    return ((x < y) ? -1 : ((x > y) ? 1 : 0));
  });
}
Posted by: Guest on April-10-2020
8

javascript sort array of objects by key value

arr.sort((x, y) => x.distance - y.distance);
Posted by: Guest on March-15-2020

Code answers related to "how to sort an array of objects with specific keys"

Code answers related to "Javascript"

Browse Popular Code Answers by Language