Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can someone guide me on date range in JavaScript?

I want to calculate one week and month date range from today's date; I.e, if today is "18th july 2010", the range for the week should be "11/07/2010 - 8/07/2010" and for the month it should be "01/07/2010 - 18/07/2010".

Thanks for your guidance in advance.

share|improve this question

2 Answers

Try this:

var now = new Date();
var nextWeek = new Date(new Date(now).setDate(now.getDate() + 7));
var nextMonth = new Date(new Date(now).setMonth(now.getMonth() + 1));
share|improve this answer
I'm not sure if it's reliable to add dates like that if say today's date was 25th. It might work on some browsers, but might on others. – Anurag Jul 18 '10 at 9:21
The Date.prototype.set* functions overflow safely like this according to spec and in all implementations I've ever seen. For example setDate from ECMA-262 v.3 (15.9.5.36, p.128) essentially says turn the number of days into a number of seconds and adjust the original date by that number of seconds... so if there are more days than there are in the current month, the month will roll over... – Dagg Nabbit Jul 18 '10 at 9:45
thanks @no, I'd wrongly assumed that overflow will not be handled properly on each browser, and always resorted to manual timestamp conversions, so this is good to know. – Anurag Jul 18 '10 at 16:53

I would recommend you looking at the excellent datejs library which has many useful functions to manipulate dates.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.