isValidDay
The isValidDay
function determines whether a given day is a valid day between 1 and 31.
Usage Example
import { isValidDay } from 'calendar-widgets';
const isValid = isValidDay(15);
console.log(isValid); // Output: true
Parameters
The function takes the following parameter:
- Name
day
- Type
- number
- Description
Return Value
The function returns a boolean value. Returns true if the day parameter is a valid day between 1 and 31, false otherwise.