Created
February 26, 2014 10:28
-
-
Save xd547/9227241 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function isLeapYear(year) { | |
| var result = false; | |
| var yearVal = parseInt(year); | |
| if (yearVal % 100 == 0) { | |
| if (yearVal % 400 == 0) { | |
| result = true; | |
| } | |
| } else { | |
| if (yearVal % 4 == 0) { | |
| result = true; | |
| } | |
| } | |
| return result; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment