Link Search Menu Expand Document

Date.GetUTCMilliSeconds Method

Explanation Returns the millisecond portion of UTC time. Although defined for compatibility with JavaScript , the Date class has a decomposition accuracy of 1 second, so it always returns 0.
Call format var v = d.GetUTCMilliSeconds ()
Return value Numerical value indicating milliseconds
Argument None
Exception None
Example of use
var d = new Date ();
print (d.GetUTCMilliSeconds (), "¥ n");
Related item