Files
30-seconds-of-code/javascript/snippets/is-weekend.md
2023-05-01 22:35:56 +03:00

446 B

title, type, tags, cover, dateModified
title type tags cover dateModified
Date is weekend snippet
date
tropical-bike 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)