What Time Will It Be in 120 Minutes
Find the exact time 120 minutes from now using this simple calculator.
Enter your values and click Calculate
Quickly find out what time it will be after any number of minutes or hours from any starting time — or what time it was before by subtracting. Enter a start hour and minute in 24-hour format (0 = midnight, 13 = 1 PM), choose whether to add or subtract time, and enter the offset in hours and minutes. The calculator handles midnight crossovers automatically and tells you whether the result falls on the same day or the next. Results appear in both 12-hour AM/PM and 24-hour formats, making it useful for meeting scheduling, cooking timers, medication reminders, shift work, and commute planning. You can add or subtract any combination of hours and minutes in a single calculation, and large offsets spanning many hours are handled correctly, so there is no need to do multiple calculations when the duration exceeds a few hours. Common use cases include determining when a roast needs to come out of the oven after a set cook time, figuring out when a medication dose is due again, calculating when a parking meter or free trial expires, and planning what time to leave to arrive by a certain time after accounting for travel duration.
How It Works
The start time is converted to a JavaScript Date object anchored to today's calendar date, with the hour and minute set to your inputs. The offset is computed as (deltaHours × 60 + deltaMinutes) total minutes, then converted to milliseconds by multiplying by 60,000. If the operation is 'add', the offset is added to the timestamp; if 'subtract', it is subtracted. JavaScript's Date arithmetic handles midnight rollovers, month-end crossings, and daylight saving transitions automatically. The result is formatted in both 12-hour AM/PM and 24-hour notation, and the day label indicates whether midnight was crossed. For example, starting at 23:00 (11 PM) and adding 90 minutes produces 00:30 AM on the next day — the calculator correctly identifies the midnight boundary and labels the result as next day. Subtracting time follows the same logic in reverse, rolling back into the previous day if needed.