Function: getMonthName


String getMonthName( Integer or Date month )

Summary

Returns a string of the month name in the system locale.


Remarks

0 is for January


Parameters

ParameterDescription
Integer or Date month This can either be a number between 0 and 11 or a Date object.


Returns

The name of the month


Examples

debugOut( getMonthName( 11 ) );
debugOut( getMonthName( new Date() ) );


See Also

  • formatLongDate
  • formatShortDate
  • getDayName


    Requirements

    1111