nueva fecha () en JavaScript 3 días a partir de ahora

var dt = new Date();
dt.setDate(dt.getDate() + 3);
Thoughtful Tuatara