30 Days From Today
Get the exact date 30 days from today — or from any start date you choose (leave the field blank to use today). You also get the weekday, the 30-business-day date that skips weekends, and 30 days back.
30 days is a straight calendar count — one to three days longer than 'next month' when a February is involved, one day shorter across most 31-day months.
The 30-day window, precisely
Thirty days is 4 weeks plus 2 days, so the landing weekday moves two steps forward: start on a Tuesday, land on a Thursday. It is not the same as 'one month later': from January 31, one month later is February 28 (or 29), but 30 days later is March 2 in a common year — the count marches straight through February's short stack of days.
Return windows, month-to-month rent notices, and net-30 invoices all run on this count. If the fine print says business days, use the third row: 30 business days is 6 full weeks (42 calendar days), and any holiday inside the window pushes a strict deadline later.
How it’s calculated
Target = start + 30 days computed as new Date(year, month, day + 30); the date engine rolls month and year boundaries, so Jan 31 + 30 correctly lands on Mar 2 (common year) or Mar 1 (leap year). Business-day variant counts only Mon-Fri, one day at a time (30 business days = 6 weeks = 42 calendar days). Dates fixed at noon to avoid daylight-saving drift.
Business days exclude weekends only; public holidays still count.
Common 30-day windows in the US
| Use | Window | Note |
|---|---|---|
| Retail return policies | 30 days | Store policy — many run 14-90 days |
| Month-to-month rent notice | 30 days | Statutory in many states; some require 60 |
| Net-30 invoice terms | 30 days | Standard B2B payment convention |
| New-prescription follow-up | ~30 days | Common clinical practice, not a rule |
Common US conventions and typical state statutes; always confirm the contract, policy, or statute that governs your specific deadline.
Common mistakes
- Using 30 days and 1 month interchangeably — from Jan 31 they differ by 2-3 days.
- Counting today as day 1; the convention here is today = day 0, tomorrow = day 1.
- Assuming a 30-day notice given mid-month always ends mid-month — count the actual days.
- Confusing 30 business days (6 weeks) with 30 calendar days (4 weeks 2 days).
Frequently asked questions
How do you calculate 30 days from today?
Add 30 to the day-of-month and let the calendar roll: new Date(year, month, day + 30). Today counts as day 0, so the result is the 30th day after today.
What's 30 days from today if today is the 31st?
From January 31 you land on March 2 in common years (28 February days + 2) and March 1 in leap years — the calendar simply absorbs February's short length.
Is 30 days from today the same weekday next month?
No. 30 days = 4 weeks + 2 days, so the weekday advances two steps. Only a 28-day (4-week) jump preserves the weekday.
How long is 30 business days?
Exactly 6 weeks — 42 calendar days — since each week contributes 5 business days. Holidays inside the window would extend a strict business-day deadline.