Home > Article > Web Front-end > Detailed explanation of the use of setMilliseconds() method in JavaScript_Basic knowledge
The javascript Date.setMilliseconds() method sets the milliseconds of the specified date according to local time.
Grammar
Date.setMilliseconds(millisecondsValue)
Note: Parameters in brackets are optional
If the external expected range specifies a number, the date information of the Date object is updated accordingly. For example, if you specify 1010 the number of seconds is incremented by 1, and 10 will be used for milliseconds.
Return value:
Example:
<html> <head> <title>JavaScript setMilliseconds Method</title> </head> <body> <script type="text/javascript"> var dt = new Date( "Aug 28, 2008 23:30:00" ); dt.setMilliseconds( 1010 ); document.write( dt ); </script> </body> </html>
This will produce the following results:
Thu Aug 28 23:30:01 UTC+0530 2008