new date() in javascript 3 days from now

JavaScript
var dt = new Date();
dt.setDate(dt.getDate() + 3);
Source

Also in JavaScript: