JavaScript Reference/Javascript Methods/getUTCMilliseconds
"getUTCMilliseconds()" Example
<html>
<body>
<button onclick="var myDate = new Date(); alert(myDate.getUTCMilliseconds());">
get UTC Milliseconds</button>
</body>
</html>
"getUTCMilliseconds()" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |Date |
+----------------+--------------------------------------------------------------+
"getUTCMilliseconds()" Syntax, Parameters and Note
Note:
Returns the milliseconds elapsed in its current second based on UTC time.
Return value: 0 to 999.
Syntax:
dateName.getUTCMilliseconds()