Files
30-seconds-of-code/snippets/isWeekday.md
Isabelle Viktoria Maciohsek 8bf67754ce Make expertise a field
2022-03-01 20:21:45 +02:00

459 B

title, tags, expertise, firstSeen, lastUpdated
title tags expertise firstSeen lastUpdated
Date is weekday date beginner 2019-07-19T12:12:09+03:00 2020-10-20T23:02:01+03:00

Checks if the given date is a weekday.

  • Use Date.prototype.getDay() to check weekday by using a modulo operator (%).
  • Omit the argument, d, to use the current date as default.
const isWeekday = (d = new Date()) => d.getDay() % 6 !== 0;
isWeekday(); // true (if current date is 2019-07-19)