Home  >  Article  >  Web Front-end  >  Sets the complete year for the specified date, according to UTC

Sets the complete year for the specified date, according to UTC

王林
王林forward
2023-08-29 21:33:02588browse

Sets the complete year for the specified date, according to UTC

JavaScript date setUTCFullYear() method sets the full year of the specified date according to Coordinated Universal Time. The parameters of the

setUTCFullYear(yearValue[, monthValue[, dayValue]]) method are as follows:

  • ##yearValue - an integer representing the value of the year, such as 2008 Year.
  • monthValue - An integer between 0 and 11 representing the month from January to December.
  • dayValue - An integer between 1 and 31 representing the number of days in the month. If the dayValue parameter is specified, monthValue must also be specified.
Example

You can try running the following code to set the full year for a specified date based on UTC:

<html>
   <head>
      <title>JavaScript setUTCFullYear Method</title>
   </head>
   <body>
      <script>
         var dt = new Date( "Aug 28, 2012 23:30:00" );
         dt.setUTCFullYear( 2018 );
         document.write( dt );
      </script>
   </body>
</html>

The above is the detailed content of Sets the complete year for 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