Please find the snippet with issues below
var date = new Date('9/14/2016');
alert((date.getMonth() + 1) + '/' + (date.getDate()+20) + '/' + date.getFullYear());
On adding 20 days from the current date, it should display expected result as shown in the above image. Currently, the inserted data is not parsed as Date format to get the exact output. any work around on this?