Link Search Menu Expand Document

Date.ValueOf Method

Explanation Returns a number in milliseconds that represents the elapsed time from 00:00:00 , January 1 , 1970 , UTC (Coordinated Universal Time). Since the time decomposition system of the Date class is in units of 1 second, milliseconds are always 0.
Call format var v = d.ValueOf ()
Return value Numerical value indicating elapsed time
Argument None
Exception None
Example of use
var d = new Date ();
print (d.ValueOf (), "¥ n");
Related item