Prepare repository for merge

This commit is contained in:
Angelos Chalaris
2023-05-01 22:35:56 +03:00
parent fc4e61e6fa
commit b3ad01863a
578 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,21 @@
---
title: Check for leap year
type: snippet
tags: [date]
cover: flowering-hills
dateModified: 2020-10-20T23:02:01+03:00
---
Checks if the given `year` is a leap year.
- Use the `Date` constructor, setting the date to February 29th of the given `year`.
- Use `Date.prototype.getMonth()` to check if the month is equal to `1`.
```js
const isLeapYear = year => new Date(year, 1, 29).getMonth() === 1;
```
```js
isLeapYear(2019); // false
isLeapYear(2020); // true
```