Search w3schools.com:

SHARE THIS PAGE

VBScript MonthName Function


VBScript Reference Complete VBScript Reference

The MonthName function returns the name of the specified month.

Syntax

MonthName(month[,abbreviate])

Parameter Description
month Required. Specifies the number of the month (January is 1, February is 2, etc.)
abbreviate Optional. A Boolean value that indicates if the month name is to be abbreviated. Default is False

Examples

Example 1

Get the name of the 8th month:

<script type="text/vbscript">

document.write(MonthName(8))

</script>

The output of the code above will be:

August

Try it yourself »

Example 2

Get the short name of the 8th month:

<script type="text/vbscript">

document.write(MonthName(8,True))

</script>

The output of the code above will be:

Aug

Try it yourself »


VBScript Reference Complete VBScript Reference

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]