Dates can feel noisy at first, so this lesson keeps them deterministic. A fixed UTC date lets beginners practice reading the year, month, and day without timezone surprises.
const launchDate = new Date('2024-05-06T00:00:00Z');
const year = launchDate.getUTCFullYear();
Use getUTCFullYear(), getUTCMonth() + 1, and getUTCDate() for stable results.