| Syntax |
date.monthToString (monthnum)
|
| Params |
monthnum is a number between 1 and 12
|
| Action |
Returns a string that corresponds to the month number.
|
| Returns |
A month name.
|
| Examples |
date.monthToString (3)
» "March"
date.monthToString (12)
» "December"
|
| Errors |
If the number is not between 1 and 12, a scriptError is thrown.
|
| Notes |
This verb can be easily localized by changing the list at user.prefs.dates.monthNames.
This verb is new in Frontier 5.1.4.
|
| See Also |
date.get
date.dayOfWeekToString
|