Copyright © tutorialspoint.com
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.
Date.getMilliseconds() |
Here is the detail of parameters:
NA
Returns the milliseconds in the specified date according to local time.
<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> |
This will produce following result:
getMilliseconds() : 578 |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com