Home  >  Article  >  Web Front-end  >  Set the day of the month for a specified date based on UTC?

Set the day of the month for a specified date based on UTC?

王林
王林forward
2023-09-03 13:49:021485browse

Set the day of the month for a specified date based on UTC?

JavaScript date setUTCDate() Method sets the month of the specified date based on Coordinated Universal Time.

The following are the parameters of the setUTCDate(dayValue) method:

  • dayValue − An integer from 1 to 31, representing the day of the month.

Example

You can try running the following code to set the month for a specified date:

<html>
   <head>
      <title>JavaScript setUTCDate Method</title>
   </head>

   <body>
      <script>
         var dt = new Date( "Oct 15, 2017 23:30:00" );
         dt.setUTCDate( 20 );
         
         document.write( dt );
      </script>
   </body>
</html>

The above is the detailed content of Set the day of the month for a specified date based on 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