Date.getUTCMilliseconds() : getUTCMilliseconds « Date « JavaScript Tutorial






The getUTCMilliseconds() method returns the millisecond portion of the date converted to universal time and expressed as an integer from 0 to 999.

<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
<!--
dateVar = new Date();
alert(dateVar.getUTCMilliseconds());
//  -->
</script>
</head>
<body>

</body>
</html>








12.19.getUTCMilliseconds
12.19.1.Date.getUTCMilliseconds()