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

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

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

The javascript Date.setUTCDate() method sets the day of the month according to universal time, on the specified date.
Grammar

Date.setUTCDate(dayValue)

Note: The data inside and outside the brackets are optional

Here are the details of the parameters:

  • dayValue: an integer from 1 to 31, representing a certain day of the month

If the specified parameter is outside the expected range, call setUTCDate to try to update the latest information of the Date object accordingly.
Return value:

  • NA

Example:

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

This will produce the following results:

Wed Aug 20 23:30: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