Sets the milliseconds value in the Date object using local time.
SyntaxdateObj.setMilliseconds( numMilli )
The following example illustrates the use of the setMilliseconds method.
function SetMSecDemo(nmsec){
var d, s;
d = new Date();
s = "Current setting is ";
s += d.toLocaleString();
s += " and " + d.getMilliseconds();
s += " milliseconds";
return(s);
}
Remarks
To set the milliseconds value using Universal Coordinated Time (UTC), use the setUTCMilliseconds 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.
See also Other articles AttributionsMicrosoft Developer Network: Article
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4