Hi,
strdate = "2018-03-20"; thedate = new Date(strdate); thedate.setDate(thedate.getDate() + 1); // 1 Tag dazu addieren d = thedate.getDate(); m = thedate.getMonth(); y = thedate.getFullYear(); alert(d+"."+m+"."+y); alert(thedate);
getMonth liefert den Monat im Bereich 0 bis 11, nicht 1 bis 12.
cu,
Andreas a/k/a MudGuard