odin-default-js-exercises/leapYears
Ricky McCallum b1ef1fa03a Clarify leap year rules 2019-01-30 17:37:49 -05:00
..
README.md Clarify leap year rules 2019-01-30 17:37:49 -05:00
leapYears.js Transform 'let' in 'const' where needs be 2018-08-07 11:25:16 +01:00
leapYears.spec.js Transform 'let' in 'const' where needs be 2018-08-07 11:25:16 +01:00

README.md

Exercise XX - 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, but not as confusing as having July in the middle of the winter, which is what would eventually happen.)

-- 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