How do I take today\'s date and add 1 day to it?
If possible, inline please?
Try this:
//create the date var myDate = new Date(); //add a day to the date myDate.setDate(myDate.getDate() + 1);