Javascript date getMilliseconds() method returns the milliseconds in the specified date according to local time. The value returned by getMilliseconds() is a number between 0 and 999.
Its syntax is as follows −
Date.getMilliseconds()
Returns the milliseconds in the specified date according to local time.
Try the following example.
<html> <head> <title>JavaScript getMilliseconds Method</title> </head> <body> <script type="text/javascript"> var dt = new Date( ); document.write("getMilliseconds() : " + dt.getMilliseconds() ); </script> </body> </html>
getMilliseconds() : 474