hello, I've a problem with date in Javascript. I need to increase by 1 day a date and I'm using this:
var myDate = new Date();
myDate.setDate(myDate.getDate() + 1);
but when is the 30th of june the increased date will be the 31th of june and not the 1st of lst of july.
how can I obtain a correct increased data???