var range = getDates(new Date(), new Date().addDays(7));
I'd like "range" to be an array of date objects, one for each day between the two dates.
The trick is that it should handle month and year boundaries as well.
Thanks.
I'd like "range" to be an array of date objects, one for each day between the two dates. The trick is that it should handle month and year boundaries as well. Thanks. |
||||
|
Here is a functional demo http://jsfiddle.net/jfhartsock/cM3ZU/ |
|||||||
|
|
||||
|
|
||||
|
|
|
I use moment.js and Twix.js they provide a very great support for date and time manpulation
I have this running on http://jsfiddle.net/aswani/GNPQc/ |
|||
|
|
|
Edited, thanks to Exception's comment- it now works properly for ranges spanning months or years.
|
|||||
|