Unable to add 5 days to current date using calender

46 Views Asked by At

I am trying to pass 2 props to a function, the minDate is to take the current date. The maxDate should take 5 days from today. But the minDate and maxDate are not getting calculated.

minDate={moment().format('DD-MM-YYYY')}
maxDate={moment('15/11/2023 22:58:58', 'DD/MM/YYYY').calendar()}

Can you please suggest. I am trying to use calendar to adding 5 days using react moment.

1

There are 1 best solutions below

3
On

moment().add(5, 'days') adds 5 days to the current date, and format('DD-MM-YYYY') is used to format the resulting date in the desired format.

minDate={moment().format('DD-MM-YYYY')}
maxDate={moment().add(5, 'days').format('DD-MM-YYYY')}