In Mongoose, how do I sort by date? (node.js)
let's say I run this query in Mongoose:
Room.find({}, function(err,docs){
}).sort({date:-1});
Please help me with solution.
For mongoose sort by date, you can use the below-mentioned code:-
Blah.find({}).sort({date: -1}).execFind(function(err,docs){ });