Link Search Menu Expand Document

month

Explanation Returns the value of the month of the date represented by date.
Call format var d = month( date )
Return value Returns a number from January to December, from 1 to 12.
Otherwise it will be 0.
Arguments Date date Date object to retrieve the month
Exception None
Example of use
var d = sysdate();
var m = month(d);
Related item year, day, youbi methods