### All major transitions ```jsx function get1201() { const d = new Date(); d.setHours(0, 0, 1, 0); return d.getTime(); } function getYesterday1159() { return get1201() - 2 * 60 * 1000; } function getJanuary1201() { const now = new Date(); const d = new Date(now.getFullYear(), 0, 1, 0, 1); return d.getTime(); } function getDecember1159() { return getJanuary1201() - 2 * 60 * 1000; }
  • ; ```