I need to increment a date value by one day in JavaScript.
For example, I have a date value 2010-09-11 and I need to store the date of the next day in a JavaScript v
var myDate = new Date(); //add a day to the date myDate.setDate(myDate.getDate() + 1);