Home > Article > Web Front-end > 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:
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!