Returns a new CalculationDate relative to the CalculationDate shifted to the following day.
var date = now.valueOf('2017-03-15 15:00:00'); // 3pm on a Wednesday
var tomorrow = date.tomorrow();
console.log('tomorrow = %s', date);
//yesterday = 2017-03-16 15:00:00