odin-default-js-exercises/leapYears
Marvin Gay 8430e59fe4 Merge branch 'origin/master' into 'jest' 2021-05-12 21:45:11 -04:00
..
README.md Update exercise number of each exercise 2021-05-12 19:39:31 +12:00
leapYears.js added trailing semicolon to all function and module exports 2021-05-10 21:27:55 +12:00
leapYears.spec.js Revert "run jest-codemods on .spec.js files, move generator-exercises back in" 2021-05-08 11:32:41 -07:00

README.md

Exercise 06 - leapYears

Create a function that determines whether or not a given year is a leap year. Leap years are determined by the following rules:

Leap years are years divisible by four (like 1984 and 2004). However, years divisible by 100 are not leap years (such as 1800 and 1900) unless they are divisible by 400 (like 1600 and 2000, which were in fact leap years). (Yes, it's all pretty confusing)

-- Learn to Program by Chris Pine

leapYears(2000) // is a leap year: returns true
leapYears(1985) // is not a leap year: returns false

Hints

  • use an if statement and && to make sure all the conditions are met properly