Skip to content

Instantly share code, notes, and snippets.

@tury3001
Created June 28, 2023 06:51
Show Gist options
  • Save tury3001/57c3bbf4e6e2899ae733fbe1ec8fdb70 to your computer and use it in GitHub Desktop.
Save tury3001/57c3bbf4e6e2899ae733fbe1ec8fdb70 to your computer and use it in GitHub Desktop.
Leap year
function isLeapYear(year) {
return (year % 4 === 0) && !( year % 100 === 0 && year % 400 !== 0 )
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment