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 -
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!