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 have this javascript for automatically setting a date filter to the first and last day of the previous month:

$(document).ready(function () {
    $("#DateFrom").datepicker({ dateFormat: 'dd/mm/yy' });
    $("#DateTo").datepicker({ dateFormat: 'dd/mm/yy' });

    var now = new Date();
    var firstDayPrevMonth = new Date(now.getYear(), now.getMonth() - 1, 1);
    var firstDayThisMonth = new Date(now.getYear(), now.getMonth(), 1);
    var lastDayPrevMonth = new Date(firstDayThisMonth - 1);

    $("#DateFrom").datepicker("setDate", firstDayPrevMonth);
    $("#DateTo").datepicker("setDate", lastDayPrevMonth);
}); 

BUT now.getYear() is returning 111 instead of the expected 2011. Is there something obvious I've missed?

share|improve this question
8  
You are apparently the first ever victim of the Y2K bug. I suggest going back in time and gloating. – Lightness Races in Orbit Jan 21 '11 at 2:54
How do you know it's returning 111? Did you try simply doing an alert() after the "var now = new Date()" line? – kvista Jan 21 '11 at 2:56
1  
@Kelly Try it in your preferred Javascript console. – deceze Jan 21 '11 at 2:59

3 Answers

up vote 75 down vote accepted

https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date/getYear

getYear is no longer used and has been replaced by the getFullYear method.

The getYear method returns the year minus 1900; thus:

  • For years greater than or equal to 2000, the value returned by getYear is 100 or greater. For example, if the year is 2026, getYear returns 126.
  • For years between and including 1900 and 1999, the value returned by getYear is between 0 and 99. For example, if the year is 1976, getYear returns 76.
  • For years less than 1900, the value returned by getYear is less than 0. For example, if the year is 1800, getYear returns -100.
  • To take into account years before and after 2000, you should use getFullYear instead of getYear so that the year is specified in full.
share|improve this answer
Thanks .. I had my code based off this SO question: stackoverflow.com/questions/605113/… that uses getYear() – JK. Jan 21 '11 at 3:13
Great, works, fixed one of my decade old scripts! :) – ymasood May 17 '11 at 13:46
1  
Y2K strikes again!! – MrDustpan Jul 25 '11 at 15:48
1  
I can't believe a copy-n-paste answer from the manual got 31 upvotes (at the time of writing). Guess it shows how common this issue is and that nobody RTFM... ;o) – deceze May 14 '12 at 1:51
3  
@deceze - no, people use W3Schools which has the wrong info (again) – Mark Henderson Jun 13 '12 at 2:28
show 2 more comments

In order to comply with boneheaded precedent, getYear() returns the number of years since 1900.

Instead, you should call getFullYear(), which returns the actual year.

share|improve this answer

Everyone doing the same mistake, that's why you cant get the correct dates of today. Here let me help you, you just need to initialize the Date() variable first.

var now = new Date(); /*Important Line, that you all missing... */

var checkyear = now.getUTCFullYear();
var monthly =now.getUTCMonth();
var daily =now.getUTCDate();

alert(checkyear);
alert(monthly);
alert(daily);
share|improve this answer
I think that you are the one who may have missed something :) var now = new Date(); is in my original question text. The problem was actually because of now.getYear() when it should have been now.getFullYear() - as explained in the accepted answer above – JK. Jan 24 at 22:22

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.