Skip to content

Instantly share code, notes, and snippets.

@johnhutchins
Created September 20, 2019 12:58
Show Gist options
  • Save johnhutchins/4fd72fd475283e525ab7fd139d7799ee to your computer and use it in GitHub Desktop.
Save johnhutchins/4fd72fd475283e525ab7fd139d7799ee to your computer and use it in GitHub Desktop.
is a number even or odd
function isEven(i){
if(i % 2 === 0){
console.log(true);
} else{
console.log(false);
}
}isEven(-1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment