Javascript - get array of dates between 2 dates
getDatesArray
provides a lightweight solution to generating date ranges in JavaScript, without any need for third-party libraries. As promised, it literally "dates" the given period 😁.
Leap years and time zones considerations
Make sure to always consider leap years and time zones. To address DST shifts, using UTC dates and date functions can save you from a coding headache or a leap of faith.
Input Validation
Always validate input data. Ensure the start date is actually less than or equal to the end date. Otherwise, you might maze yourself into an infinite loop, and no coffee supply is large enough to endure that.
Awesome formatting
A good front-end dev knows that looks do matter. Render the output as readable date strings. Stick a .map()
and .join()
at the end of the array and make those dates shine!
When Dependencies Are Your Dependences
You might not always want to depend on hefty libraries like moment.js. For a problem like this, native JavaScript provides elegance without that extra weight.
Making the Function Your Own
Make these ranges work for you by adding a “step” parameter. Now we’re making strides... one day at a time (or as you see fit).
Special Cases
Leap Year Busters
We've got you covered when a date range steps into a leap year. And yes, February 29th counts!
The Year-End Conundrum
What happens if the range stretches over New Year's Eve? Don't sweat it; this function will handle the party and sequence the dates correctly.
Date Formatting
Remember, JavaScript's Date object provides toLocaleDateString
method to cater to regional or application-specific needs:
Talking about Intervals
The getDatesArray
can adjust to different time intervals beyond just daily. Modify the function to yield hourly, weekly, or even monthly ranges.
Interactive Demo
See this function in a live action by checking an interactive demo. Feel free to experiment with various start and end dates to see this little script's magic:
Was this article helpful?