How to add days to date with ISO 8601 Format using Javascript.
var date = new Date(2013, 9, 18, 18, 0, 0);
var myDate = date + 1
This will add a day to the date:
date.setDate(date.getDate()+1);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With