Calculate amount of days between two dates
Calculate the number of days between two dates. For calculating the number of days since events, how many days alive or duration of a project.
Input dates
Share this tool
Frequently Asked Questions
Here are the answers to the most common questions we receive. If your question isn't listed, or you need more info, or have feedback, contact us.
How to calculate days between two dates?
When do you need to know how many days have passed?
- Tracking the duration of a project or task.
- Calculating the age of a person or an object.
- Determining the number of days left until a deadline or event.
- Monitoring the time elapsed since a significant event. Think of a party, an anniversary or the last medical check-up.
- Calculating interest or penalties based on the number of days passed.
How can I calculate days passed myself?
- Note the current date and the selected date. Calculate the difference in years, months, and days separately.
- Convert the difference in years to days (considering leap years). There are 365 days in a year, except for leap years which have 366 days. Leap years are years that are divisible by 4, except for years that are divisible by 100 but not by 400. Last leap years were in 2024, 2020, 2016, 2012, 2008, 2004, 2000, 1996, 1992, 1988, 1984, 1980, 1976, 1972, 1968, 1964, 1960, 1956, 1952, 1948, 1944, 1940, 1936, 1932..
- Convert the difference in months to days (considering the number of days in each month).
- January has 31 days
- February has 28 days (but 29 days in a leap year)
- March has 31 days
- April has 30 days
- May has 31 days
- June has 30 days
- July has 31 days
- August has 31 days
- September has 30 days
- October has 31 days
- November has 30 days
- December has 31 days
- Add up all the days to get the total number of days passed.
In JavaScript, how to calculate days between two dates?
const date1 = new Date('2024-01-01');
const date2 = new Date();
const timeDiff = date2 - date1;
const daysPassed = Math.floor(timeDiff / (1000 * 60 * 60 * 24));
console.log(daysPassed);
In Python, how to calculate days between two dates?
import datetime
date1 = datetime.strptime('2024-01-01', '%Y-%m-%d')
date2 = datetime.now()
time_diff = date2 - date1
days_passed = time_diff.days
print(days_passed)
Related Calculation Tools
Calculate the percentage change between two values. Useful for determining price increases, discounts, or growth rates.
Convert running pace from minutes per kilometer (min/km) to kilometers per hour (kph). Check your running speed. For fast runners, marathoners and athletes.
Calculate the hours when the intermittent fasting cycle ends with a simple fasting clock.
Calculate your running pace and finish time (km/h and min/km) for different race distances from 100m sprints to 5k, 10k and marathon.