Link Search Menu Expand Document

Date.GetUTCMonth Method

Explanation Returns the month part of a date in UTC time with a month number with January as 0.
Call format var v = d.GetUTCMonth ()
Return value Numerical value indicating the month number
Argument None
Exception None
Example of use
var d = new Date ();
print (d.GetUTCMonth (), "¥ n");
Related item