Files
30-seconds-of-code/snippets/isLeapYear.md
Isabelle Viktoria Maciohsek caa67e2a49 Update snippet descriptions
2020-10-20 23:02:01 +03:00

19 lines
381 B
Markdown

---
title: isLeapYear
tags: date,beginner
---
Checks if the given `year` is a leap year.
- Use `new Date()`, 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
```