Home  >  Article  >  Web Front-end  >  The use of setUTCMinutes() method for processing time in JS_Basic knowledge

The use of setUTCMinutes() method for processing time in JS_Basic knowledge

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

The javascript Date.setUTCMinutes() method sets minutes to a specified date according to universal time.
Grammar

Date.setUTCMinutes(minutesValue[, secondsValue[, msValue]])

Note: The data inside and outside the brackets are optional

Here are the details of the parameters:

  • minutesValue: an integer between 0 and 59, representing minutes
  • secondsValue: An integer between 0 and 59, representing seconds. If you specify the secondsValue parameter, you must also specify minutesValue.
  • msValue: A number between 0 and 999, representing milliseconds. If you specify the msValue parameter, you must also specify minutesValue and secondsValue.

If the secondsValue and msValue parameters are not specified, the values ​​returned from the getUTCSeconds and getUTCMilliseconds methods are used.

If the specified parameter is outside the expected range, setUTCMinutes attempts to update the latest information of the Date object accordingly. For example, if secondsValue uses 100, minutes(minutesValue) will be incremented by 1(minutesValue 1) and 40 will be used for seconds.
Return value:

  • NA


Example:

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

This will produce the following results:

Thu Aug 28 14:35:00 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