Javascript examples for Date:getMonth
The getMonth() method returns the month from 0 to 11.
January is 0, February is 1, and so on.
None
A Number, from 0 to 11, representing the month
The following code shows how to return the month:
<!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>