![Check if the given year is a leap year](https://javascriptsource.com/wp-content/uploads/2021/10/Check-if-the-given-year-is-a-leap-year-702x526.jpg)
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
.
const isLeapYear = year => new Date(year, 1, 29).getMonth() === 1;
// Examples
isLeapYear(2019); // false
isLeapYear(2020); // true