Mega Code Archive

 
Categories / JavaScript Tutorial / Date
 

Date getUTCFullYear()

The getUTCFullYear() method returns the year as a full four-digit number converted to universal time. The following example uses the getUTCFullYear() Method to Return the Year <html> <head> <title>A Simple Page</title> <script language="JavaScript"> <!-- dateVar = new Date(); alert(dateVar.getUTCFullYear()); //  --> </script> </head> <body> </body> </html>