Example 1: sort array of object js
const books = [
{id: 1, name: 'The Lord of the Rings'},
{id: 2, name: 'A Tale of Two Cities'},
{id: 3, name: 'Don Quixote'},
{id: 4, name: 'The Hobbit'}
]
books.sort((a,b) => (a.name > b.name) ? 1 : ((b.name > a.name) ? -1 : 0));
Example 2: javascript sort array with objects
var array = [
{name: "John", age: 34},
{name: "Peter", age: 54},
{name: "Jake", age: 25}
];
array.sort(function(a, b) {
return a.age - b.age;
});
Example 3: sort array of objects javascript
list.sort((a, b) => (a.color > b.color) ? 1 : -1)
Example 4: 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);
Example 5: javascript sort array of object by property
function sortByDate( a, b ) {
if ( a.created_at < b.created_at ){
return -1;
}
if ( a.created_at > b.created_at ){
return 1;
}
return 0;
}
myDates.sort(sortByDate);
Example 6: javascript sort array of objects
const sortObjectArray = ({ arr, field, order = 'desc' }) => {
arr.sort(function(a, b) {
const fieldA = typeof a[field] === 'string' ? a[field].toLowerCase() : a[field]
const fieldB = typeof b[field] === 'string' ? b[field].toLowerCase() : b[field]
let result
if (order === 'desc') {
result = fieldA > fieldB ? 1 : -1
} else {
result = fieldA < fieldB ? 1 : -1
}
return result
})
return arr
}
let arr = [
{name: "John", age: 34},
{name: "Peter", age: 54},
{name: "jake", age: 25}
]
let arr2 = sortObjectArray({ arr, field: 'name'})
console.log(arr2)
let arr3 = sortObjectArray({ arr, field: 'age', order: 'asc' })
console.log(arr3)