Date Calculator: frequently asked questions
- How many days are between two dates?
- Subtract the earlier date from the later one. The result excludes the end date; add 1 if you want to count both the start and end days.
- How are business days counted?
- Weekdays (Monday to Friday) between the two dates are counted; public holidays are not excluded.
- What happens when adding a month to 31 January?
- JavaScript date rules roll over to early March in non-leap years (31 Feb doesn't exist), so check month-end results.
