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

How to add days to current DateTime using JavaScript. Does JavaScript have a built in function like .Net AddDay?

share|improve this question

11 Answers

up vote 125 down vote accepted

i use

var today = new Date();
var tomorrow = new Date();
tomorrow.setDate(today.getDate()+1);

This will deal with end of months so adding 32 days will work.

HTH

share|improve this answer
6  
Why the need to create 2 separate date objects? Why not simply use the same date object: var d = new Date(); d.setDate( d.getDate() + 1 );? – Joseph Silber Mar 25 '12 at 15:01
23  
For clarity and readability more than anything, sometimes it's easier than explaining or commenting a nondescript line of code. – OneSHOT Mar 30 '12 at 23:03
4  
If today is not the current date, but coming from somewhere else, make sure to do this: var nextDay = new Date(currentDay) or you will always get the current month. Maybe obvious, but it tripped me up. – FellowMD Nov 20 '12 at 22:03
1  
This work only if you add day within the current month! If you try any other month, this solution does not work!!! – sbrbot Dec 3 '12 at 23:41
2  
This is why mutators for date objects annoy me. It forces you to write nonsense code where a variable called "tomorrow" is actually initialized to today's date. Dates should be immutable by default, with perhaps the option for a mutable date subclass for efficiently iterating over a range of dates. Having said that, I think @OneShot's example is clearer using 2 different objects than re-using the same object. – mehaase Apr 11 at 15:43
show 6 more comments
var today = new Date();
var tomorrow = new Date();
tomorrow.setDate(today.getDate()+1);

Be careful, because this can be tricky. When setting "tomorrow", it only works because it's current value matches the year and month for "today". However, setting to a date number like "32" normally will still work just fine to move it to the next month.

share|improve this answer
4  
The accepted answer to this question looks strangely familiar. Curious. I guess I'll put my +1 here. – Tomalak Feb 19 '09 at 0:59
1  
Yeah? But WTF is this? (ran on March 31st, 2010): today = new Date(); tomorrow = new Date(); tomorrow.setDate(today.getDate()+1); alert(tomorrow.getMonth()); Says "3". alert(tomorrow); is correct... Why??? – d-_-b Mar 31 '10 at 2:44
4  
@sims month is 0 indexed. Month 3 is April – Joel Coehoorn Mar 31 '10 at 3:26
2  
@oneshot - the edit still came before your answer – Joel Coehoorn May 24 '11 at 14:13
1  
Why the need to create 2 separate date objects? Why not simply use the same date object: var d = new Date(); d.setDate( d.getDate() + 1 );? – Joseph Silber Mar 25 '12 at 15:03
show 3 more comments

You can create one with:-

Date.prototype.addDays = function(days)
{
    var dat = new Date(this.valueOf());
    dat.setDate(dat.getDate() + days);
    return dat;
}

var dat = new Date();

alert(dat.addDays(5))

The problem with using setDate directly is that it's mutator and that sort of thing is best avoided. ECMA saw fit to treat Date as a mutable class rather than an immutable structure.

share|improve this answer
FWIW, the Java Date class works in a similar fashion. Apparently, objects were expensive back in the '90s... – Shog9 Feb 19 '09 at 0:15

My solution is:

nextday=new Date(oldDate.getFullYear(),oldDate.getMonth(),oldDate.getDate()+1);

this solution does not have problem with daylight saving nor it calculates correct day only in current month/year. Here you can add/sub time offsets for years, months, days etc.

share|improve this answer
Note: this resets time to 00:00:00 (can be an issue or not) – Álvaro G. Vicario Feb 20 at 11:45

Try

var someDate = new Date();
var duration = 2; //In Days
someDate.setTime(someDate.getTime() +  (duration * 24 * 60 * 60 * 1000));

Using setDate() to add a date wont solve your problem, try adding some days to a Feb month, if you try to add new days to it, it wont result in what you expected.

share|improve this answer
+1 This should be marked as the correct answer – Crackerjack Dec 18 '12 at 18:49
6  
No, this should not be marked as the correct answer since this solution assumes that every day has 24*60*60*1000 seconds but it does not (daylight saving)! – sbrbot Jan 12 at 9:06
Any evidence about the 'Feb' problem with setDate()? Is it this: stackoverflow.com/questions/5497637/… – nobar Feb 4 at 3:21
This doesn't work with daylight saving time. – bonomo Mar 2 at 19:05

These answers seem confusing to me, I prefer:

var ms = new Date().getTime() + 86400000;
var tomorrow = new Date(ms);

getTime() gives us milliseconds since 1970, and 86400000 is the number of milliseconds in a day. Hence, ms contains milliseconds for the desired date.

Using the millisecond constructor gives the desired date object.

share|improve this answer
20  
This solution doesn't take daylight savings into account. So, for example, this will return the same date, 23 hours later: new Date(new Date('11/4/2012').getTime() + 86400000) – Noah Miller Mar 20 '12 at 14:55

The mozilla docs for setDate() don't indicate that it will handle end of month scenarios. See https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Date

setDate()

  • Sets the day of the month (1-31) for a specified date according to local time.

That is why I use setTime() when I need to add days.

share|improve this answer
I would link to the ECMAScript docs, but they are released in PDF ;( – Blake Mills Sep 28 '12 at 20:37

Just spent ages trying to work out what the deal was with the year not adding when following the lead examples below.

If you want to just simply add n days to the date you have you are best to just go:

myDate.setDate(myDate.getDate() + n);

or the longwinded version

var theDate = new Date(2013, 11, 15);
var myNewDate = new Date(theDate);
myNewDate.setDate(myNewDate.getDate() + 30);
console.log(myNewDate);

This today/tommorrow stuff is confusing. By setting the current date into your new date variable you will mess up the year value. if you work from the original date you won't.

share|improve this answer

I created these extensions last night:
you can pass either positive or negative values;

example:

var someDate = new Date();
var expirationDate = someDate.addDays(10);
var previous = someDate.addDays(-5);


Date.prototype.addDays = function (num) {
    var value = this.valueOf();
    value += 86400000 * num;
    return new Date(value);
}

Date.prototype.addSeconds = function (num) {
    var value = this.valueOf();
    value += 1000 * num;
    return new Date(value);
}

Date.prototype.addMinutes = function (num) {
    var value = this.valueOf();
    value += 60000 * num;
    return new Date(value);
}

Date.prototype.addHours = function (num) {
    var value = this.valueOf();
    value += 3600000 * num;
    return new Date(value);
}

Date.prototype.addMonths = function (num) {
    var value = new Date(this.valueOf());

    var mo = this.getMonth();
    var yr = this.getYear();

    mo = (mo + num) % 12;
    if (0 > mo) {
        yr += (this.getMonth() + num - mo - 12) / 12;
        mo += 12;
    }
    else
        yr += ((this.getMonth() + num - mo) / 12);

    value.setMonth(mo);
    value.setYear(yr);
    return value;
}
share|improve this answer
1  
The .addDays() method does not work for dates that cross daylight saving time boundaries. – mskfisher Apr 29 at 0:02

Thanks Jason for your answer that works as expected, here is a mix from your code and the handy format of AnthonyWJones :

Date.prototype.addDays = function(days){
    var ms = new Date().getTime() + (86400000 * days);
    var added = new Date(ms);
    return added;
}
share|improve this answer
2  
It does not take into account daylight saving when there's more or less than 86400000 seconds in a day and can result in logical error (program bug) in your code. – sbrbot Jan 12 at 9:08

the same answer: How to add number of days to today's date?

    function DaysOfMonth(nYear, nMonth) {
        switch (nMonth) {
            case 0:     // January
                return 31; break;
            case 1:     // February
                if ((nYear % 4) == 0) {
                    return 29;
                }
                else {
                    return 28;
                };
                break;
            case 2:     // March
                return 31; break;
            case 3:     // April
                return 30; break;
            case 4:     // May
                return 31; break;
            case 5:     // June
                return 30; break;
            case 6:     // July
                return 31; break;
            case 7:     // August
                return 31; break;
            case 8:     // September
                return 30; break;
            case 9:     // October
                return 31; break;
            case 10:     // November
                return 30; break;
            case 11:     // December
                return 31; break;
        }
    };

    function SkipDate(dDate, skipDays) {
        var nYear = dDate.getFullYear();
        var nMonth = dDate.getMonth();
        var nDate = dDate.getDate();
        var remainDays = skipDays;
        var dRunDate = dDate;

        while (remainDays > 0) {
            remainDays_month = DaysOfMonth(nYear, nMonth) - nDate;
            if (remainDays > remainDays_month) {
                remainDays = remainDays - remainDays_month - 1;
                nDate = 1;
                if (nMonth < 11) { nMonth = nMonth + 1; }
                else {
                    nMonth = 0;
                    nYear = nYear + 1;
                };
            }
            else {
                nDate = nDate + remainDays;
                remainDays = 0;
            };
            dRunDate = Date(nYear, nMonth, nDate);
        }
        return new Date(nYear, nMonth, nDate);
    };
share|improve this answer
3  
You'll need to update your leap year check - if the year is divisible by 100 and not by 400, it's not a leap year (2000 was; 2100 won't be) – andrewsi Oct 5 '12 at 16:38

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.