Built-in objects save you from rewriting common utilities. This lesson combines one Math method with one Date method and keeps the output predictable for beginners.
const roundedUp = Math.ceil(4.2);
const launchYear = new Date('2024-05-06T00:00:00Z').getUTCFullYear();
Use Math.ceil(4.2) for the rounded-up value.