Home >Web Front-end >JS Tutorial >Introduction to the use of setUTCSeconds() method in JavaScript_Basic knowledge

Introduction to the use of setUTCSeconds() method in JavaScript_Basic knowledge

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

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

Date.setUTCSeconds(secondsValue[, msValue])

Note: The data inside and outside the brackets are optional

Here are the details of the parameters:

  • secondsValue: An integer between 0 and 59, representing seconds.
  • msValue: A number between 0 and 999, representing milliseconds.

If the msValue parameter is not specified, the value returned from the getUTCMilliseconds method is used.

If the specified parameter is outside the expected range, call setUTCSeconds to try to update the latest information of the Date object accordingly. For example, if secondsValue uses 100, the minutes stored in the date object will be incremented by 1, and 40 will be used for seconds.
Return value:

  • NA


Example:

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

This will produce the following results:

Thu Aug 28 13:31:05 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