'How to get Data using Mongoose

I want to get following data using Mongoose.

This is Schema structure:

title: {
    type: String,
},
deadline: {
    type: Number,(day)
},
date: {
    type: Date,
    default: Date.now()
}

In above, "date" field represents start time.
start time = date
end time = date + 24 * 3600 * 1000 * deadline
I want to get data that current date is in between "start time" and "end time"
Please help me.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source