JavaScript Reference/Javascript Methods/getYear
"getYear()" Example
<html>
<body>
<button onclick="var myDate = new Date();
alert(myDate.getYear());">get year</button>
</body>
</html>
"getYear()" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |Date |
+----------------+--------------------------------------------------------------+
"getYear()" Syntax, Parameters and Note
Note:
Returns the year.
When the year is before 2000, the return value is the year minus 1900.
When the year is 2000 or after, the return value is the four-digit year.
Syntax:
dateName.getYear()