Date.prototype.getDay()
to check weekend by using a modulo operator (%
).d
, to use the current date as default.const isWeekend = (d = new Date()) => d.getDay() % 6 === 0;
isWeekend(); // 2018-10-19 (if current date is 2018-10-18)
Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️