Date.getYear() : getYear « Date « JavaScript Tutorial






The getYear() method returns the year portion of the Date object.

The year is represented as either a two-digit number or a four-digit number, depending on the browser version.

<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
<!--
dateVar = new Date();
alert(dateVar.getYear());
//  -->
</script>
</head>
<body>

</body>
</html>








12.23.getYear
12.23.1.Date.getYear()