Link Search Menu Expand Document

Date.GetUTCFullYear Method

Explanation Returns the year of a date in UTC time.
Call format var v = d.GetUTCFullYear ()
Return value Numerical value indicating the year of the Christian era
Argument None
Exception None
Example of use
var d = new Date ();
print (d.GetUTCFullYear (), "¥n");
Related item