Date getMonth() Method - Javascript Date

Javascript examples for Date:getMonth

Description

The getMonth() method returns the month from 0 to 11.

January is 0, February is 1, and so on.

Parameters

None

Return Value:

A Number, from 0 to 11, representing the month

The following code shows how to return the month:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<button onclick="myFunction()">Test</button>

<p id="demo"></p>

<script>
function myFunction() {//from ww  w .ja  va  2 s  . c o  m
    var d = new Date();
    var n = d.getMonth();
    document.getElementById("demo").innerHTML = n;
}
</script>

</body>
</html>

Related Tutorials