Convert Date to String showing the complete UTC date in JavaScript

Description

The following code shows how to convert Date to String showing the complete UTC date.

Example


<!-- w w w  .  j av a 2s  .com-->
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
var aDate = new Date(Date.UTC(2021, 5, 4, 12, 21, 55));
document.writeln(aDate.toUTCString());
</script>
</head>
<body>
</body>
</html>

Click to view the demo

The code above generates the following result.

Convert Date to String showing the complete UTC date in JavaScript
Home »
  Javascript Tutorial »
    Data Type »
      Date
...
Add your own method to Date object in JavaS...
Compare Date value in JavaScript
Convert Date to Locale Date String showing ...
Convert Date to Locale Time String showing ...
Convert Date to String showing the complete...
Convert Date to String showing the date's d...
Convert Date to String showing the date's h...
Convert date to the milliseconds representa...
Convert date value to local format string i...
Create Date object from year month hour min...
Create Date value from String in the format...
Create Date value from String in the format...
Create Date value from milliseconds in Java...
Create Date value from string in the format...
Create Date value from string in the format...
Create date in Coordinated Universal Time i...
Display current time by using Date.getHours...
Format Time to have two digit for each fiel...
Get current date and time in JavaScript
Get current time in the millisecond with Da...
Get the UTC date's day of the week as a num...
Get the UTC date's hours as a number betwee...
Get the UTC date's milliseconds in JavaScri...
Get the UTC date's minutes as a number betw...
Get the UTC date's seconds as a number betw...
Get the date's day of the week as a number ...
Get the date's hours as a number between 0 ...
Get the date's milliseconds in JavaScript
Get the date's minutes as a number between ...
Get the date's seconds as a number between ...
Get the day of the month (1 through 31) for...
Get the day of the month (1 through 31) for...
Get the four-digit year (2007 instead of ju...
Get the four-digit year of the UTC date val...
Get the milliseconds representation of the ...
Get the month name for UTC time in JavaScri...
Get the month of the UTC date, where 0 repr...
Get the month of the date, where 0 represen...
...