JavaScript Tutorial/Date/getMonth

Материал из Web эксперт
Перейти к: навигация, поиск

Date.getMonth

The getMonth() method returns the month portion of the Date object expressed as an integer from 0 (January) to 11 (December).



   <source lang="javascript">

<html> <head> <title>Current Month</title> </head> <body> <script language="JavaScript" type="text/javascript">

</script> </body> </html></source>


Date.getMonth() with switch statement

   <source lang="javascript">

<html>

  <script language="JavaScript">
   
   </script>
   </html></source>
   
  

Translate the Date().getMonth() to month name

   <source lang="javascript">

<html> <head> <title>Combine Date Values</title> </head> <body> <script language="JavaScript" type="text/javascript">

</script> </body> </html></source>