show/hide this revision's text 2 added 490 characters in body

use date.getFullYear().

This is (as correctly pointed out elsewhere) is a Y2K thing. Netscape (written before 2000) originally returned, for example 98 from getYear(). Rather than return to 00, it instead returned 100 for the year 2000. Then other browsers came along and did it differently, and everyone was unhappy as incompatibility reigned.

Later browsers supported getFullYear as a standard method to return the complete year.

show/hide this revision's text 1

use date.getFullYear()