JSFiddle - React, Tailwind, and code Playground
by Anu Vidhya
JavaScript
var today = new Date();
console.log(today);
console.log(today.getDate());
console.log(parseInt(today.getMonth()));
if (parseInt(today.getDate()) == 16 && parseInt(today.getMonth()) == 2) {
alert('It is 2nd of march');
console.log("today");
}