Files
30-seconds-of-code/snippets/isWeekend.md
Angelos Chalaris 8a6b73bd0c Update covers
2023-02-16 22:24:28 +02:00

466 B

title, tags, cover, firstSeen, lastUpdated
title tags cover firstSeen lastUpdated
Date is weekend date tropical-bike 2019-07-19T17:07:02+03:00 2020-10-20T23:02:01+03:00

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.
const isWeekend = (d = new Date()) => d.getDay() % 6 === 0;
isWeekend(); // 2018-10-19 (if current date is 2018-10-18)