Languages
[Edit]
EN

JavaScript - sort array of objects by date property value

0 points
Created by:
Kenya-Spears
800

In this article, we would like to show you how to sort array of objects by date property value using JavaScript.

Quick solution:

array.sort(function(a, b) {
    return a.date - b.date;
});

 

Practical example

In this example, we sort an array of objects by date property value using the custom compare function as an argument of the sort() method.

1. Ascending order

// ONLINE-RUNNER:browser;

var array = [
    { name: 'Ann',  birthday: new Date('2000-01-02') },
    { name: 'Tom',  birthday: new Date('2000-01-01') },
    { name: 'Mark', birthday: new Date('2000-01-03') }
];

array.sort(function(a, b) {
    return a.birthday - b.birthday;
});

console.log(JSON.stringify(array, null, 4));

2. Descending order

// ONLINE-RUNNER:browser;

var array = [
    { name: 'Ann',  birthday: new Date('2000-01-02') },
    { name: 'Tom',  birthday: new Date('2000-01-01') },
    { name: 'Mark', birthday: new Date('2000-01-03') }
];

array.sort(function(a, b) {
    return b.birthday - a.birthday;
});

console.log(JSON.stringify(array, null, 4));

See also

  1. JavaScript - sort array of objects

  2. JavaScript - sort array of objects by string property value

  3. JavaScript - sort array of objects by ISO 8601 date string property value

References

  1. Array.prototype.sort() - JavaScript | MDN
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join