This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.

Smartphone icons created by Freepik - Flaticon

JavaScript Dates

The toUTCString() Method

Convert a date to a string using the UTC standard:

const d = new Date();
document.getElementById("demo").innerHTML = d.toUTCString();