Created
February 15, 2016 16:44
-
-
Save JDStraughan/8d3d35d397542468acce to your computer and use it in GitHub Desktop.
Sample JS function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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