EN
JavaScript - sort array of objects by multiple properties
0 points
In this article, we would like to show you how to sort array of objects by multiple properties using JavaScript.
Quick solution:
xxxxxxxxxx
1
array.sort(function(a, b) {
2
return a.property1.localeCompare(b.property1) || a.property2 - b.property2;
3
});
In this example, we sort an array of objects by name
and age
properties using the custom compare function as an argument of the sort()
method.
xxxxxxxxxx
1
var users = [
2
{ name: 'Ann', age: 28 },
3
{ name: 'Chris', age: 29 },
4
{ name: 'Tom', age: 26 },
5
{ name: 'Ann', age: 25 },
6
{ name: 'Chris', age: 26 },
7
];
8
9
users.sort(function(a, b) {
10
return a.name.localeCompare(b.name) || a.age - b.age;
11
});
12
13
console.log(JSON.stringify(users, null, 4));
To reverse the order, simply swap arguments places after the return
statement.
xxxxxxxxxx
1
var users = [
2
{ name: 'Ann', age: 28 },
3
{ name: 'Chris', age: 29 },
4
{ name: 'Tom', age: 26 },
5
{ name: 'Ann', age: 25 },
6
{ name: 'Chris', age: 26 },
7
];
8
9
users.sort(function (a, b) {
10
return b.name.localeCompare(a.name) || b.age - a.age;
11
});
12
13
console.log(JSON.stringify(users, null, 4));