Skip to content

Instantly share code, notes, and snippets.

@dhunmoon
Last active February 2, 2017 15:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dhunmoon/ebfbf4e9130dff1134d57c8196cbf361 to your computer and use it in GitHub Desktop.
Save dhunmoon/ebfbf4e9130dff1134d57c8196cbf361 to your computer and use it in GitHub Desktop.
JS: Check Leap Year
if(month == 2){//Means if it is month of feborary
if(nyear %4 == 0 && ( nyear %400 != 0 || nyear %100 !== 0 ){//Leap year statement
return true
}
}else{
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment