odin-default-js-exercises/06_leapYears/README.md

616 B

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 which follow either of the following conditions: 1.Exactly divisible by both 4 and 400 2. Exactly divisible by 4 but not 100

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