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

Smartphone icons created by Freepik - Flaticon

JavaScript Date.parse()

Date.parse() returns the number of milliseconds between the date and January 1, 1970:

const msec = Date.parse("March 21, 2012");
document.getElementById("demo").innerHTML = msec;