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

Smartphone icons created by Freepik - Flaticon

JavaScript new Date()

2 numbers specify year and month:

Sat Dec 01 2018 00:00:00 GMT+0000 (Coordinated Universal Time)

const d = new Date(2018, 11);
document.getElementById("demo").innerHTML = d;