HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <p>Click the button to display the UTC milliseconds of a date time, after setting the UTC milliseconds.</p> <button onclick="myFunction()">Display Date</button> <p id="point"></p> <script> function myFunction(){ var d = new Date(); var n = d.setUTCMilliseconds(619); document.getElementById("point").innerHTML = n; } </script> </body> </html>
OUTPUT
×

Save as Private