isWeekend
Checks if the given date is a weekend.
- Use
Date.prototype.getDay()to check weekend by using a modulo operator (%). - Omit the argument,
d, to use the current date as default.
Checks if the given date is a weekend.
Date.prototype.getDay() to check weekend by using a modulo operator (%).d, to use the current date as default.