Days Between Moon landing and today
Time since Apollo 11 landed on the Moon. Computed below across multiple units; if either date is "today", the page reflects the build date.
July 20, 1969 → today
20,877 days
In Other Units
| Total seconds | 1,803,772,800 |
|---|---|
| Total hours | 501,048 |
| Total days | 20,877 |
| Total weeks | 2982.4 |
| Total months (calendar) | 685 |
| Total years (calendar) | 57 |
How to Calculate This in Code
JavaScript (with day.js)
dayjs('2026-09-16').diff(dayjs('1969-07-20'), 'day')
// 20877
Python
from datetime import date (date(2026, 9, 16) - date(1969, 7, 20)).days # 20877
Bash (GNU date)
echo $(( ($(date -d '2026-09-16' +%s) - $(date -d '1969-07-20' +%s)) / 86400 )) # 20877