<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Dates</h1>
<h2>The getUTCMonth() Method</h2>
<p>getUTCMonth() returns the month (from 0 to 11) of a date, according to universal time:</p>
<p id="demo"></p>
<script>
const month = ["January","February","March","April","May","June","July","August","September","October","November","December"];
const d = new Date();
let name = month[d.getUTCMonth()];
document.getElementById("demo").innerHTML = name;
</script>
<p><strong>Note:</strong> 0=January, 1=February, Etc.</p>
</body>
</html>