Funzione mese VBScript

La funzione Month restituisce un numero compreso tra 1 e 12 che rappresenta il mese della data specificata.

Sintassi

Month(date)

Esempio

<!DOCTYPE html>
<html>
   <body>
      <script language = "vbscript" type = "text/vbscript">
         document.write(Month("2013-06-30"))
       
      </script>
   </body>
</html>

Quando lo salvi come .html e lo esegui in Internet Explorer, lo script sopra produrrĂ  il seguente risultato:

6