Days Between Thanksgiving and Christmas 2025
Holiday shopping season. Computed below across multiple units; if either date is "today", the page reflects the build date.
November 27, 2025 → December 25, 2025
28 days
In Other Units
| Total seconds | 2,419,200 |
|---|---|
| Total hours | 672 |
| Total days | 28 |
| Total weeks | 4.0 |
| Total months (calendar) | 0 |
| Total years (calendar) | 0 |
How to Calculate This in Code
JavaScript (with day.js)
dayjs('2025-12-25').diff(dayjs('2025-11-27'), 'day')
// 28
Python
from datetime import date (date(2025, 12, 25) - date(2025, 11, 27)).days # 28
Bash (GNU date)
echo $(( ($(date -d '2025-12-25' +%s) - $(date -d '2025-11-27' +%s)) / 86400 )) # 28