Home  >  Article  >  Web Front-end  >  Detailed explanation of the use of setUTCMilliseconds() method in JavaScript_Basic knowledge

Detailed explanation of the use of setUTCMilliseconds() method in JavaScript_Basic knowledge

WBOY
WBOYOriginal
2016-05-16 15:55:451388browse

The javascript Date.setUTCMilliseconds() method sets the specified date in milliseconds according to universal time.
Grammar

Date.setUTCMilliseconds(millisecondsValue)

Note: The data inside and outside the brackets are optional

Here are the details of the parameters:

  • millisecondsValue: A number between 0 and 999, representing milliseconds.

If the specified parameter is outside the expected range, setUTCMilliseconds attempts to update the latest information of the Date object accordingly. For example, if millisecondsValue uses 1100, the seconds stored in the date object will be increased by 1, and 100 will be used for milliseconds.
Return value:

  • NA

Example:

<html>
<head>
<title>JavaScript setUTCMilliseconds Method</title>
</head>
<body>
<script type="text/javascript">
  var dt = new Date( "Aug 28, 2008 23:30:00" );
  dt.setUTCMilliseconds( 1100 );
  document.write( dt ); 
</script>
</body>
</html>

This will produce the following results:

Thu Aug 28 23:30:01 UTC+0530 2008 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn