![Check if the given date is a weekend](https://javascriptsource.com/wp-content/uploads/2021/10/Check-if-the-given-date-is-a-weekend-702x526.jpg)
Use Date.prototype.getDay()
to check weekend by using a modulo operator (%
). Omit the argument, d
, to use the current date as default.
const isWeekend = (d = new Date()) => d.getDay() % 6 === 0;
// Example
isWeekend(); // 2018-10-19 (if current date is 2018-10-18)