By using getUTCMonth()
method we can return the month, according to UTC.
<p>Click the below button to return the Month as per the UTC.</p> <input type="button" value="Click" onclick="myDate()" /> <p id="myId"></p> <script> function myDate() { var a = new Date(); var r = a.getUTCMonth(); document.getElementById("myId").innerHTML = r; } </script>
In the above code snippet we have given Id
as "myId
"to the second <p>
element in the HTML code. There is a function myDate() in the<script>
block which is connected to the Onclick of the HTML button. The document.getElementById(
"myId")
returns the element that has Id
"id=myID" in the HTML page. We need to return the month as per the UTC, for that we are using getUTCMonth()
. Onclick of the button "Click" in the HTML code fires the function myDate() in the <script>
block at the same time getUTCMonth()
return the month number as output according to UTC.
OUTPUT
NOTE: Here in this case January=0, February=1, March=3,April=4,.................,December=11.
Views: 3568 | Post Order: 115