msg(' two digit year'); msg('new Date(0, 0) == ' + new Date(0, 0)); msg('year, month') msg('new Date(2000, 11) == ' + new Date(2000, 11)); msg('year, month with carry'); msg('new Date(2000, 12) == ' + new Date(2000, 12)); msg('year, month, day'); msg('new Date(2000, 11, 7) == ' + (new Date(2000, 11, 7))); msg('year, month, day with carry'); msg('new Date(2000, 11, 32) == ' + (new Date(2000, 11, 32))); msg('year, month, day, hours'); msg('new Date(2000, 11, 7, 23) == ' + (new Date(2000, 11, 7, 23))); msg('year, month, day, hours with carry'); msg('new Date(2000, 11, 7, 24) == ' + (new Date(2000, 11, 7, 24))); msg('year, month, day, hours, seconds'); msg('new Date(2000, 11, 7, 23, 59) == ' + (new Date(2000, 11, 7, 23, 59))); msg('year, month, day, hours, seconds with carry'); msg('new Date(2000, 11, 7, 23, 60) == ' + (new Date(2000, 11, 7, 23, 60))); msg('year, month, day, hours, seconds, ms'); msg('new Date(2000, 11, 7, 23, 59) == ' + (new Date(2000, 11, 7, 23, 59, 999))); msg('year, month, day, hours, seconds, ms with carry'); msg('new Date(2000, 11, 7, 23, 59, 1000) == ' + (new Date(2000, 11, 7, 23, 59, 1000)));