monthAsString(month_number [, locale])
returns string
Name | Type | Required | Default | Description |
---|---|---|---|---|
month_number | numeric | Yes | ||
locale | string | No |
getVal = monthAsString(11);
writeDump(getVal);
With locale
getVal = monthAsString(6,"DE");
writeDump(getVal);