Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 125 Bytes

check_if_is_leap_year.md

File metadata and controls

7 lines (6 loc) · 125 Bytes

Check if the year is leap year

function isLeapYear(year) {
    return new Date(year, 1, 29).getDate() === 29;
}