How to sort the array of objects by key in JavaScript
In this post we will give you information about How to sort the array of objects by key in JavaScript. Hear we will give you detail about How to sort the array of objects by key in JavaScriptAnd how to use it also give you demo for it if it is necessary.
we are going to learn about how to sort the array of objects by key in JavaScript with the help of exmaples.
JavaScript has an built-in sort() method which helps us to sort the array of the objects easily; we don’t need to write our own custom sort methods.
Consider, that we have an array of objects with name and price properties.
const vegetables = [ {name:"beans",price: 5}, {name:"tomato",price: 3}, {name:"pumpkin",price: 2}, {name:"broccoli",price: 7},]
Now, we need to sort the above vegetables array in ascending order by using its price property.
Here is an example:
const vegetables = [ {name:"beans",price: 5}, {name:"tomato",price: 3}, {name:"pumpkin",price: 2}, {name:"broccoli",price: 7},]console.log(vegetables.sort((a,b) => a.price - b.price ))
output - >[ {name: "pumpkin", price: 2}, {name: "tomato", price: 3}, {name: "beans", price: 5}, {name: "broccoli", price: 7}]
Array.sort() : The sort() method takes the callback function as its argument and returns the sorted array.
The return condition inside the callback function.
if our return condition is a – b then it sorts the array in ascending order.
if our return condition is b – a then it sorts the array in descending order.
Let’s sort our vegetables array in descending order.
console.log(vegetables.sort((a,b) => b.price-a.price ))
output- >[ {name: "broccoli",price: 7}, {name: "beans",price: 5}, {name: "tomato",price: 3}, {name: "pumpkin",price: 2}]
Hope this code and post will helped you for implement How to sort the array of objects by key in JavaScript. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs