<html>
<body>
<h2>JavaScript getMilliseconds()</h2>
<p>The getMilliseconds() method returns the milliseconds of a date as a number (0-999):</p>
<p id="demo"></p>
<script>
var d = new Date();
document.getElementById("demo").innerHTML = d.getMilliseconds();
</script>
</body>
<!-- Mirrored from www.w3schools.com/js/tryit.asp?filename=tryjs_date_getmilliseconds by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:39:31 GMT -->
</html>