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

Smartphone icons created by Freepik - Flaticon

JavaScript Dates

Using new Date()

A date object can be created with a specified date and time:

const d = new Date("October 13, 2014 11:13:00");
document.getElementById("demo").innerHTML = d;