Files
30-seconds-of-code/snippets/isWeekend.md
2022-06-08 09:34:23 +03:00

22 lines
502 B
Markdown

---
title: Date is weekend
tags: date
expertise: beginner
cover: blog_images/tropical-bike.jpg
firstSeen: 2019-07-19T17:07:02+03:00
lastUpdated: 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.
```js
const isWeekend = (d = new Date()) => d.getDay() % 6 === 0;
```
```js
isWeekend(); // 2018-10-19 (if current date is 2018-10-18)
```