I am looking to add 20 days to the current date and present the output in the mm/dd/yyyy format. Presently, with today being 05/15/2014, the result produced is 05/35/2014, which is clearly an invalid date.
var currentYear = new Date();
alert((currentYear.getMonth() + 1) + "/" + (currentYear.getDate() + 20) + "/" + currentYear.getFullYear());