Link Search Menu Expand Document

Date.GetMilliSeconds Method

Explanation Returns the millisecond portion of local 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.GetMilliSeconds ()
Return value Numerical value indicating milliseconds
Argument None
Exception None
Example of use
var d = new Date ();
print (d.GetMilliSeconds (), "¥ n");
Related item