Gets the milliseconds of a Date object using Universal Coordinated Time (UTC).
Syntax
dateObj.getUTCMilliseconds()
Parameters
The required dateObj reference is a Date object.
Return Value
Returns a millisecond value that can range from 0-999.
Remarks
To get the number of milliseconds in local time, use the getMilliseconds method.
Example
The following example illustrates the use of the getUTCMilliseconds method.
var date = new Date("1/1/2001");
document.write(date.getUTCMilliseconds());
document.write("<br/>");
date.setMilliseconds(34);
document.writedate.getUTCMilliseconds());
// Output:
// 0
// 34
Requirements
Supported in the following document modes: Quirks, Internet Explorer 6 standards, Internet Explorer 7 standards, Internet Explorer 8 standards, Internet Explorer 9 standards, Internet Explorer 10 standards, Internet Explorer 11 standards. Also supported in Store apps (Windows 8 and Windows Phone 8.1). See Version Information.
Applies To: Date Object
See Also
getMilliseconds Method (Date)
setMilliseconds Method (Date)
setUTCMilliseconds Method (Date)

