How to sort an array of objects by a specific property in JavaScript

1 Answer

0 votes
const Arrays_of_Objects = [{ name: 'Amy', age: 41 }, 
                           { name: 'Albus', age: 32 }, 
                           { name: 'Dana', age: 37 }];

Arrays_of_Objects.sort((a, b) => a.age - b.age);
 
console.log(Arrays_of_Objects);


 
/* 
run:
 
[
  { name: 'Albus', age: 32 },
  { name: 'Dana', age: 37 },
  { name: 'Amy', age: 41 }
]
 
*/
   

 



answered Oct 31, 2024 by avibootz
...