Skip to content
Advertisement

How can I use moment.js to add days, excluding weekends?

I’m setting a default follow-up date two days from current date, which currently works:

const Notify = moment().add(2, 'days').toDate();

However, I would like to exclude weekends. So I installed moment WeekDay, but I can’t seem to get it to work with adding days to the current date. The documentation calls for:

moment().weekday(0)

But I can’t get that to work with adding in two days forward. Any ideas?

Advertisement

Answer

Try: moment-business-days

It should help you.

Example:

var momentBusinessDays = require("moment-business-days")

momentBusinessDays('20-09-2018', 'DD-MM-YYYY').businessAdd(3)._d 

Result:

Tue Sep 25 2018 00:00:00 GMT+0530 (IST)
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement