monthofyear()

Learn how to use the monthofyear() function to get the integer representation of the month.

Returns the integer number from 1-12 representing the month number of the given year.

Syntax

monthofyear(date)

Parameters

NameTypeRequiredDescription
datedatetime✔️The date for which to find the month number.

Returns

An integer from 1-12 representing the month number of the given year.

Example

print result=monthofyear(datetime("2015-12-14"))

Output

result
12