-
-
Save Raidus/d5a9cd05b0cc4fe80dd9de1f9e697a87 to your computer and use it in GitHub Desktop.
Get dates in between two dates with JavaScript.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Returns an array of dates between the two dates | |
var getDates = function(startDate, endDate) { | |
var dates = [], | |
currentDate = startDate, | |
addDays = function(days) { | |
var date = new Date(this.valueOf()); | |
date.setDate(date.getDate() + days); | |
return date; | |
}; | |
while (currentDate <= endDate) { | |
dates.push(currentDate); | |
currentDate = addDays.call(currentDate, 1); | |
} | |
return dates; | |
}; | |
// Usage | |
var dates = getDates(new Date(2013,10,22), new Date(2013,11,25)); | |
dates.forEach(function(date) { | |
console.log(date); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment