Skip to content

Instantly share code, notes, and snippets.

@JDStraughan
Created February 15, 2016 16:44
Show Gist options
  • Save JDStraughan/8d3d35d397542468acce to your computer and use it in GitHub Desktop.
Save JDStraughan/8d3d35d397542468acce to your computer and use it in GitHub Desktop.
Sample JS function
function isOdd(input) {
var remainder = input % 2;
if (remainder === 0) {
return true;
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment