Link Search Menu Expand Document

Date.SetTime Method

Explanation Set the date and time directly.
Call format d.SetTime (value)
Return value None
Arguments integer value Specifies a number in milliseconds that represents the elapsed time from 00:00:00 on January 1 , 1970 in UTC
Exception None
Example of use
var d = new Date ();
d.SetTime (1015083255000);
print (d, "¥ n");
Related item