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 getDate() Method

Return the day of a date as a number (1-31):

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