Link Search Menu Expand Document

Date.GetUTCDay Method

Explanation Returns the day of the week for a date in UTC time.
Call format var v = d.GetUTCDay ()
Return value Numerical value indicating the day of the week 0 is Sunday, 1 is Monday ... 6 is Saturday.
Argument None
Exception None
Example of use
var d = new Date ();
print (d.GetUTCDay (), "¥ n");
Related item