JavaScript Tambahkan 1 hari ke tanggal baru

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