Skip to content

Instantly share code, notes, and snippets.

@markcarrrr
Last active August 29, 2015 14:00
Show Gist options
  • Save markcarrrr/11156184 to your computer and use it in GitHub Desktop.
Save markcarrrr/11156184 to your computer and use it in GitHub Desktop.
Even number
function isEven(value) {
if (value%2 === 0)
return true;
else
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment