About the 30 Day Calculator
This tool finds the calendar date that sits exactly 30 days before or after a date you choose, then reports the day of the week, how far that date is from today, and the equivalent span in months and days. It is plain calendar arithmetic, done the way any date calculator does it — by advancing the calendar day by day through real month lengths and leap years, not by assuming 30 days always equals one calendar month (it doesn't; calendar months run from 28 to 31 days).
The formula
Given a start date S and a direction, the target date T is:
- 30 days after: T = S + 30 calendar days
- 30 days before: T = S − 30 calendar days
Because the calculation walks through the actual calendar (JavaScript's native date object), it automatically lands on the correct day even when the span crosses February in a leap year, a 30-day month, or a year boundary — no manual adjustment needed.
Two ways to count "30 days"
There are two common conventions for what "Day 30" means, and this calculator supports both:
- Exclusive (default): the start date is Day 0, so Day 30 is 30 full days later. This matches how most date calculators, return-window policies, and notice-period rules count elapsed days.
- Inclusive: the start date itself is counted as Day 1, so the 30th day is only 29 days after the start. Some contracts and challenge trackers use this convention instead.
Pick whichever convention matches your context — the two methods differ by exactly one day, which matters for a deadline tied to a specific "Day 30" but is otherwise a rounding note.
Common uses
- Return, refund, and money-back-guarantee windows ("30 days from purchase")
- Notice periods for rentals, employment, or contract cancellations ("30 days' notice")
- Fitness challenges, habit trackers, and elimination diets run in 30-day blocks
- Trial periods, warranty windows, and simple 30-day countdown or count-back planning
Precision note
Results use calendar days (every day counted equally), not business days — weekends and holidays are not skipped. If your 30-day window has legal or contractual significance, confirm whether the relevant rule counts calendar days or business days, and whether it uses the exclusive or inclusive convention, since either can shift the deadline by a day or more.