- Can I subtract two dates?
- Yes — date1 minus date2 gives the duration. Output in human-readable (2 years 3 months 15 days), ISO 8601 (P2Y3M15D), and pure seconds/minutes/hours.
- What about times within a day?
- Yes — input two timestamps on the same day, get the hours:minutes:seconds duration. Useful for billing or performance tracking.
- Handle DST transitions?
- Yes — 'spring forward' loses an hour; 'fall back' gains one. The duration reflects wall-clock time, not actual elapsed seconds. Toggle to use UTC for DST-free math.
- Negative durations?
- Supported — if date1 is before date2. Useful for 'how overdue is this task?' scenarios.