MonthName

From NSB App Studio
Revision as of 15:31, 25 March 2019 by Ghenne (talk | contribs) (→‎Related Items)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This function is for BASIC compatibility. It is not available in pure JavaScript projects.

MonthName(month[, abbreviate])

Description

MonthName returns the string name of the given month. The required parameter, month, is a numeric expression ranging from 1 to 12. The optional parameter, abbreviate, is a boolean variable that specifies whether MonthName returns the complete month name or its three-letter abbreviation.

Example (Basic)

Rem MonthName Example
Print MonthName(Month(NOW))
Print MonthName(12, TRUE)

Output

August
Dec

Related Items

WeekdayName