Microsoft® JScript setUTCMilliseconds Method |
Language Reference Version 3 |
Modifies the milliseconds value stored in the Date object according to Universal Coordinated Time (UTC).
objDate.setUTCMilliseconds(numMilli)The numMilli argument is a numeric value equal to the milliseconds value.
To set the milliseconds according to local time, use the setMilliseconds method.If the value of numMilli is greater than 999 or is a negative number, the stored number of seconds (and minutes, hours, and so forth, if necessary) is incremented an appropriate amount.
The following example illustrates the use of the setUTCMilliseconds method:
function SetUTCMSecDemo(nmsec) { var d, s; var sep = ":"; d = new Date(); d.setUTCMilliseconds(nmsec); s = "Current setting is "; s += d.toUTCString() + sep + d.getUTCMilliseconds(); return(s); }