Función VBScript MonthName

La función MonthName devuelve el nombre del mes para la fecha especificada.

Sintaxis

MonthName(month[,toabbreviate])

Descripción de parámetros

  • Month, un parámetro obligatorio. Especifica el número del mes.

  • toabbreviate, un parámetro opcional. Un valor booleano Valor booleano que indica si el nombre del mes debe abreviarse. Si se deja en blanco, el valor predeterminado se tomará como Falso.

Ejemplo

<!DOCTYPE html>
<html>
   <body>
      <script language = "vbscript" type = "text/vbscript">
         document.write("Line 1 : " & MonthName(01,True) & "<br />")
         document.write("Line 2 : " & MonthName(01,false) & "<br />")
          
         document.write("Line 3 : " & MonthName(07,True) & "<br />")
         document.write("Line 4 : " & MonthName(07,false) & "<br />")
          
      </script>
   </body>
</html>

Cuando lo guarda como .html y lo ejecuta en Internet Explorer, la secuencia de comandos anterior producirá el siguiente resultado:

Line 1 : Jan
Line 2 : January
Line 3 : Jul
Line 4 : July