Returns a new CalculationDate relative to the CalculationDate shifted so that the day of the year is a January the first.
var date = now.valueOf('2017-03-15 15:00:00'); // 3pm on a Wednesday
var date = date.startOfYear();
console.log('date = %s', date);
//date = 2017-01-01 15:00:00