JavaScript aktuelles Datum fügen 30 Tage hinzu

var future = new Date();
future.setDate(future.getDate() + 30);
Crowded Caiman