Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to increment a date value by one day in Javascript. For example, I have a date value 2010-09-11 and I need to store the next date in a Javascript variable.

How can I increment a date by 1 day?

share|improve this question
1  
Didn't any of the answers here answer your question? In particular, I'd say Jigar Joshi's answer is the most straight-forward way to do this. More about accepting answers: meta.stackoverflow.com/questions/5234/… – T.J. Crowder Oct 13 '12 at 7:03

4 Answers

Two options for you:

Raw JavaScript:

var today = new Date();
var tomorrow = new Date(today.getTime() + (24 * 60 * 60 * 1000));

Edit: See also Jigar's answer and David's comment below: var tomorrow = new Date(); tomorrow.setDate(tomorrow.getDate() + 1);

Or using MomentJS:

var today = moment();
var tomorrow = moment(today).add('days', 1);

(Beware that add modifies the instance you call it on, rather than returning a new instance, so today.add('days', 1) would modify today. That's why we start with a cloning op on var tomorrow = ....)

Or using DateJS, but it hasn't been updated in a long time:

var today = new Date(); // Or Date.today()
var tomorrow = today.add(1).day();
share|improve this answer
2  
+1, although I usually go with a version of your first example, that's basically the same, although to me a bit more semantic: var tomorrow = new Date(); tomorrow.setDate(tomorrow.getDate() + 1); – David Hedlund Sep 9 '10 at 7:27
But I have date 2010-09-11 in a variable by using document.getElementById("arrival_date").value,it shows invalid date – san Sep 9 '10 at 7:37
To be picky, T.J., the value needs to be assigned by setDate, and not by mere integer incrementation. The value of tomorrow in your updated example would simply be 10 (where today is 9th). It is also crucial that the initial value of tomorrow when setDate is called, is the same as today, because you're only altering the day-part, not year/month. Basically, we're saying "take the date we've already got, but make its day 10 instead of 9.", and we get the added benefit of it being a date object, so it'll automatically correct for incrementing to 32, say. – David Hedlund Sep 9 '10 at 7:47
@David: Thanks, fixed. – T.J. Crowder Sep 9 '10 at 8:06
1  
Sadly this example does not account for timezones. When in the Eastern Timezone, try feeding it the date November 7, 2010. The result is still November 7, 2010 because that day has 25 hours, not 24. – Clever Human Apr 22 '11 at 16:08
show 2 more comments
var myDate = new Date();

//add a day to the date
myDate.setDate(myDate.getDate() + 1);
share|improve this answer
+1 very nice... – T.J. Crowder Sep 9 '10 at 7:31
But I have date 2010-09-11 in a variable by using document.getElementById("arrival_date").value,it shows invalid date – san Sep 9 '10 at 7:35
@sanatu: In that case you need to format the string in a way that the browser will accept. Chrome accepts new Date("2009-09-11") but Firefox doesn't. I think most browsers accept new Date("2009/09/11") so an easy solution would be var arrivalDate = document.getElementById('arival_date').value; var dayAfter = new Date(arrival_date.replace(/-/g, '/')); dayAfter.setDate(dayAfter.getDate()+1);. – David Hedlund Sep 9 '10 at 7:43
2  
A more solid approach than replacing - with / and hoping that browsers will accept it, would be to divide the string into parts: var dateParts = arrivalDate.split('-'); var y = parseInt(dateParts[0], 10); var m = parseInt(dateParts[1], 10); var d = parseInt(dateParts[2], 10); var dayAfter = new Date(y, m-1, d+1); Note that we're using m-1 here, because javascript months are enum values (January being 0, not 1), and d+1 because we're doing the incrementation already in the initial assignment (it'll automatically correct for Feb 29th, etc.) – David Hedlund Sep 9 '10 at 7:50

None of the examples in this answer seem to work with Daylight Saving Time adjustment days. On those days, the number of hours in a day are not 24 (they are 23 or 25, depending on if you are "springing forward" or "falling back".)

The below AddDays javascript function accounts for daylight saving time:

    function AddDays(date, amount)
    {
        var tzOff = date.getTimezoneOffset() * 60 * 1000;
        var t = date.getTime();
        t += (1000 * 60 * 60 * 24) * amount;
        var d = new Date();
        d.setTime(t);
        var tzOff2 = d.getTimezoneOffset() * 60 * 1000;
        if (tzOff != tzOff2)
        {
            var diff = tzOff2 - tzOff;
            t += diff;
            d.setTime(t);
        }
        return d;

    }

Here are the tests I used to test the function:

    var d = new Date(2010,10,7);
    var d2 = AddDays(d, 1);
    document.write(d.toString() + "<br />" + d2.toString());

    d = new Date(2010,10,8);
    d2 = AddDays(d, -1)
    document.write("<hr /><br />" +  d.toString() + "<br />" + d2.toString());

    d = new Date('Sun Mar 27 2011 01:59:00 GMT+0100 (CET)');
    d2 = AddDays(d, 1)
    document.write("<hr /><br />" +  d.toString() + "<br />" + d2.toString());

    d = new Date('Sun Mar 28 2011 01:59:00 GMT+0100 (CET)');
    d2 = AddDays(d, -1)
    document.write("<hr /><br />" +  d.toString() + "<br />" + d2.toString());
share|improve this answer

You first need to parse your string before following the other people's suggestion:

var dateString = "2010-09-11";
var myDate = new Date(dateString);

//add a day to the date
myDate.setDate(myDate.getDate() + 1);

If you want it back in the same format again you will have to do that "manually":

var y = myDate.getFullYear(),
    m = myDate.getMonth() + 1, // january is month 0 in javascript
    d = myDate.getDate();
var pad = function(val) { var str = val.toString(); return (str.length < 2) ? "0" + str : str};
dateString = [y, pad(m), pad(d)].join("-");

But I suggest getting Date.js as mentioned in other replies, that will help you alot.

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.