I have a current Date object that needs to be incremented by one day using the JavaScript Date object. I have the following code in place:
var ds = stringFor
To add one day to a date object:
var date = new Date(); // add a day date.setDate(date.getDate() + 1);