JavaScript добавьте 1 день к новой дате

var date = new Date();
// add 1 day
date.setDate(date.getDate() + 1);
Ivan The Terrible