Possible Duplicate:
How to add number of days to today’s date?
I need to get tomorrow and X number of days into the future using JavaScript and print in the format MM-DD-YYYY. For example, if I wanted to pass in the following parameters, I would like the start day to be tomorrow of the current date and the end date to be 31 days from now.
startDate: '02-02-2013',
endDate: '03-04-2013',
How can this be done?