Answers for "Given an array of objects, sort the objects by population size. Return the entire object."

8

javascript sort array of objects by key value

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

sort array of objects javascript by value

let orders = [
  { 
    order: 'order 1', date: '2020/04/01_11:09:05'
  },
  { 
    order: 'order 2', date: '2020/04/01_10:29:35'
  },
  { 
    order: 'order 3', date: '2020/04/01_10:28:44'
  }
];


console.log(orders);

orders.sort(function(a, b){
  let dateA = a.date.toLowerCase();
  let dateB = b.date.toLowerCase();
  if (dateA < dateB) 
  {
    return -1;
  }    
  else if (dateA > dateB)
  {
    return 1;
  }   
  return 0;
});

console.log(orders);
Posted by: Guest on April-01-2020

Code answers related to "Given an array of objects, sort the objects by population size. Return the entire object."

Code answers related to "Javascript"

Browse Popular Code Answers by Language