Home  >  Article  >  Web Front-end  >  Sets the month of the specified date according to UTC

Sets the month of the specified date according to UTC

WBOY
WBOYforward
2023-08-27 11:13:061352browse

Sets the month of the specified date according to UTC

JavaScript date setUTCMonth ( ) method sets the month of the specified date based on universal time.

The following are the parameters of the setUTCMonth (MonthValue) method in JavaScript -

  • monthValue - An integer between 0 and 11, representing the month.

Example

You can try running the following code to set the month of a specified date based on universal time -

<html>
   <head>
      <title>JavaScript getUTCSeconds Method</title>
   </head>
   <body>
      <script>
         var dt = new Date( "Aug 28, 2008 13:30:00" );
         dt.setUTCMonth( 2 );
         
         document.write( dt );
      </script>
   </body>
</html>

The above is the detailed content of Sets the month of the specified date according to UTC. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete