new date with date 2b 1

Solutions on MaxInterview for new date with date 2b 1 by the best coders in the world

showing results for - "new date with date 2b 1"
Laura
30 Apr 2017
1var date = new Date();
2
3// add a day
4date.setDate(date.getDate() + 1);
5