<html>
<body>
<h1>JavaScript Dates</h1>
<h2>The setUTCMonth() Method</h2>
<p>setUTCMonth() method sets the month (according to UTC time) of a date object.</p>
<p id="demo"></p>
<p><b>Note:</b> 0=January, 1=February etc.</p>
<script>
const d = new Date("2025-01-15");
d.setUTCMonth(4);
document.getElementById("demo").innerHTML = d;
</script>
</body>
</html>