Notes
Returns the month component of a Date or Datetime.
Here are some examples:
date myDate = date.newInstance(2024, 4, 21);
Integer month = myDate.month();
system.debug(month);
datetime myDatetime = datetime.newInstance(2024, 4, 21,8,20,45);
Integer month = myDatetime.month();
system.debug(month);
Output: 4
Video
Video does not exists.