Why does Javascript getYear() return 108? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T19:57:21Zhttp://stackoverflow.com/feeds/question/98124http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-10810Why does Javascript getYear() return 108?ctrlShiftBryan2008-09-18T23:53:48Z2009-11-25T14:40:17Z
<p>Why does this javascript return 108 instead of 2008? it gets the day and month correct but not the year?</p>
<pre><code>myDate = new Date();
year = myDate.getYear();
</code></pre>
<p>year = 108?</p>
http://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-108/98129#981295Answer by jeremy Ruten for Why does Javascript getYear() return 108?jeremy Ruten2008-09-18T23:55:00Z2008-09-18T23:55:00Z<p>It must return the number of years since the year 1900.</p>
http://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-108/98130#981300Answer by BCS for Why does Javascript getYear() return 108?BCS2008-09-18T23:55:04Z2008-09-18T23:55:04Z<p>Y2K issue?</p>
http://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-108/98131#981310Answer by Nils Pipenbrinck for Why does Javascript getYear() return 108?Nils Pipenbrinck2008-09-18T23:55:06Z2008-09-18T23:55:06Z<p>The number you get is the number of years since 1900. Don't ask me why..</p>
http://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-108/98136#981363Answer by Dan for Why does Javascript getYear() return 108?Dan2008-09-18T23:55:21Z2008-09-19T00:01:51Z<p>use <code>date.getFullYear()</code>.</p>
<p>This is (as correctly pointed out elsewhere) is a Y2K thing. Netscape (written before 2000) originally returned, for example <code>98</code> from <code>getYear()</code>. Rather than return to <code>00</code>, it instead returned <code>100</code> for the year 2000. Then other browsers came along and did it differently, and everyone was unhappy as incompatibility reigned.</p>
<p>Later browsers supported <code>getFullYear</code> as a standard method to return the complete year.</p>
http://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-108/98139#981390Answer by jeff.skj for Why does Javascript getYear() return 108?jeff.skj2008-09-18T23:55:46Z2008-09-18T23:55:46Z<p>it is returning 4 digit year - 1900, which may have been cool 9+ years ago, but is pretty retarded now. Java's java.util.Date also does this.</p>
http://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-108/98156#981561Answer by joelhardi for Why does Javascript getYear() return 108?joelhardi2008-09-18T23:58:13Z2008-09-18T23:58:53Z<p>It's dumb. It <a href="http://www.irt.org/articles/js199/index.htm" rel="nofollow">dates to pre-Y2K days</a>, and now just returns the number of years since 1900 for legacy reasons. Use getFullYear() to get the actual year.</p>
http://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-108/98161#981610Answer by bentilly for Why does Javascript getYear() return 108?bentilly2008-09-18T23:58:30Z2008-09-18T23:58:30Z<p>As others have said, it returns the number of years since 1900. The reason why it does <em>that</em> is that when JavaScript was invented in the mid-90s, that behaviour was both convenient and consistent with date-time APIs in other languages. Particularly C. And, of course, once the API was established they couldn't change it for backwards compatibility reasons.</p>
http://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-108/98162#9816225Answer by ConroyP for Why does Javascript getYear() return 108?ConroyP2008-09-18T23:58:40Z2008-09-19T00:15:42Z<p>It's a <a href="http://en.wikipedia.org/wiki/Y2K" rel="nofollow">Y2K</a> thing, only the years since 1900 are counted.</p>
<p>There are potential compatibility issues now that <code>getYear()</code> has been deprecated in favour of <code>getFullYear()</code> - from <a href="http://www.quirksmode.org/js/introdate.html" rel="nofollow">quirksmode</a>:</p>
<blockquote>
<p>To make the matter even more complex, date.getYear() is deprecated nowadays and you should use date.getFullYear(), which, in turn, is not supported by the older browsers. If it works, however, it should always give the full year, ie. 2000 instead of 100.</p>
<p>Your browser gives the following years with these two methods:</p>
</blockquote>
<pre><code>* The year according to getYear(): 108
* The year according to getFullYear(): 2008
</code></pre>
<p>There are also implementation differences between Internet Explorer and Firefox, as IE's implementation of <code>getYear()</code> was changed to behave like <code>getFullYear()</code> - from <a href="http://www-128.ibm.com/developerworks/web/library/wa-ie2mozgd/" rel="nofollow">IBM</a>:</p>
<blockquote>
<p>Per the ECMAScript specification, getYear returns the year minus 1900, originally meant to return "98" for 1998. getYear was deprecated in ECMAScript Version 3 and replaced with getFullYear(). </p>
<p>Internet Explorer changed getYear() to work like getFullYear() and make it Y2k-compliant, while Mozilla kept the standard behavior.</p>
</blockquote>
http://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-108/98192#981920Answer by Milan Babuškov for Why does Javascript getYear() return 108?Milan Babuškov2008-09-19T00:03:46Z2008-09-19T00:03:46Z<p>BTW, different browsers might return different results, so it's better to skip this function altogether and and use getFullYear() always.</p>
http://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-108/98237#9823710Answer by FlySwat for Why does Javascript getYear() return 108?FlySwat2008-09-19T00:12:49Z2008-09-19T00:12:49Z<p>Since getFullYear doesn't work in older browsers, you can use something like this:</p>
<pre><code>Date.prototype.getRealYear = function()
{
if(this.getFullYear)
return this.getFullYear();
else
return this.getYear() + 1900;
};
</code></pre>
<p>Javascript prototype can be used to extend existing objects, much like C# extension methods. Now, we can just do this;</p>
<pre><code>var myDate = new Date();
myDate.getRealYear();
// Outputs 2008
</code></pre>
http://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-108/98300#983001Answer by jjohn for Why does Javascript getYear() return 108?jjohn2008-09-19T00:22:16Z2008-09-19T00:22:16Z<p>This question is so old that it makes me weep with nostalgia for the dotcom days! </p>
<p>That's right, Date.getYear() returns the number of years since 1900, just like Perl's localtime(). One wonders why a language designed in the 1990s wouldn't account for the century turnover, but what can I say? You had to be there. It sort of made a kind of sense at the time (like pets.com did).</p>
<p>Before 2000, one might have been tempted to fix this bug by appending "19" to the result of getYear() resulting in the <a href="http://www.theregister.co.uk/2000/01/04/transmeta_screws_up_on_y2k/" rel="nofollow">"year 19100 bug"</a>. Others have already answered this question sufficiently (add 1900 to the result of getDate()). </p>
<p>Maybe the book you're reading about JavaScript is a little old? </p>
<p>Thanks for the blast from the past!</p>
http://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-108/98406#984062Answer by skiphoppy for Why does Javascript getYear() return 108?skiphoppy2008-09-19T00:42:44Z2008-09-19T00:42:44Z<p>Check the docs. It's not a Y2K issue -- it's a lack of a Y2K issue! This decision was made originally in C and was copied into Perl, apparently JavaScript, and probably several other languages. That long ago it was apparently still felt desirable to use two-digit years, but remarkably whoever designed that interface had enough forethought to realize they needed to think about what would happen in the year 2000 and beyond, so instead of just providing the last two digits, they provided the number of years since 1900. You could use the two digits, if you were in a hurry or wanted to be risky. Or if you wanted your program to continue to work, you could add 100 to the result and use full-fledged four-digit years.</p>
<p>I remember the first time I did date manipulation in Perl. Strangely enough I <strong>read the docs</strong>. Apparently this is not a common thing. A year or two later I got called into the office on December 31, 1999 to fix a bug that had been discovered at the last possible minute in some contract Perl code, stuff I'd never had anything to do with. It was this exact issue: the standard date call returned years since 1900, and the programmers treated it as a two-digit year. (They assumed they'd get "00" in 2000.) As a young inexperienced programmer, it blew my mind that we'd paid so much extra for a "professional" job, and those people hadn't even bothered to read the documentation. It was the beginning of many years of disillusionment; now I'm old and cynical. :)</p>
<p>In the year 2000, the annual YAPC Perl conference was referred to as "YAPC 19100" in honor of this oft-reported non-bug.</p>
<p>Nowadays, in the Perl world at least, it makes more sense to use a standard module for date-handling, one which uses real four-digit years. Not sure what might be available for JavaScript.</p>
http://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-108/100802#1008022Answer by Arve for Why does Javascript getYear() return 108?Arve2008-09-19T09:46:31Z2008-09-20T09:28:44Z<p>You should, as pointed out, never use <code>getYear()</code>, but instead use <code>getFullYear()</code>.</p>
<p>The story is however not as simple as "IE implements <code>GetYear()</code> as <code>getFullYear()</code>. Opera and IE these days treat <code>getYear()</code> as <code>getYear()</code> was originally specified for dates before 2000, but will treat it as <code>getFullYear()</code> for dates after 2000, while webkit and Firefox stick with the old behavior</p>
<p>This outputs 99 in all browsers:</p>
<pre><code>javascript:alert(new Date(917823600000).getYear());
</code></pre>
<p>This outputs 108 in FF/WebKit, and 2008 in Opera/IE:</p>
<pre><code>javascript:alert(new Date().getYear());
</code></pre>
http://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-108/316549#3165490Answer by vinoth for Why does Javascript getYear() return 108?vinoth2008-11-25T07:03:58Z2008-11-25T07:03:58Z<p>var date_object=new Date();
var year = date_object.getYear();
if(year < 2000) {
year = year + 1900;
}
//u will get the full year ....</p>
http://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-108/1797333#17973330Answer by kostasnamidis for Why does Javascript getYear() return 108?kostasnamidis2009-11-25T14:40:17Z2009-11-25T14:40:17Z<p><hr></p>
<h2>Cool !! You guys helped me very much! thanks</h2>
<p><hr></p>