updated README.md

This commit is contained in:
ResoDevansh 2023-02-05 16:53:26 +05:30
parent 8746ce056a
commit 233dbab61b
1 changed files with 5 additions and 5 deletions

View File

@ -2,15 +2,15 @@
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)
>
> 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
> -- <cite>[Learn to Program](https://pine.fm/LearnToProgram/chap_06.html) by Chris Pine</cite>
```javascript
leapYears(2000) // is a leap year: returns true
leapYears(1985) // is not a leap year: returns false
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