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
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);
Take a look at the api for Date over on MDN.
var date = new Date(2013, 9, 18, 18, 0, 0);
date.setDate(date.getDate() + 1);