Get Month
Preview
Code
<script>
let today = new Date();
let month = today.getMonth();
console.log("Month:", month);
</script>
<script>
let today = new Date();
let month = today.getMonth();
console.log("Month:", month);
</script>