Link Search Menu Expand Document

Date.SetUTCDate Method

 
Explanation Set the day part in UTC time.
Call format d.SetUTCDate (value)
Return value None
Arguments integer value Specify the day numerically.
Exception None
Example of use
    var d = new Date ();
    print (d, "¥ n");
    d.SetUTCDate (10);
    print (d, "¥ n");
    
Related item