Checks if the provided month is a valid month number (1-12).
The month number to validate.
A boolean indicating whether the month is valid.
isValidDateMonth(5);;//=> trueisValidDateMonth(13);;//=> false Copy
isValidDateMonth(5);;//=> trueisValidDateMonth(13);;//=> false
Generated using TypeDoc
Checks if the provided month is a valid month number (1-12).