Skip to content

Instantly share code, notes, and snippets.

@MajorMokoto
Created January 25, 2012 01:17
Show Gist options
  • Save MajorMokoto/1673970 to your computer and use it in GitHub Desktop.
Save MajorMokoto/1673970 to your computer and use it in GitHub Desktop.
var isOdd = function (n) {
if(n%2===0)
return false;
else
return true;
}
var isEven = function (n) {
return !isOdd(n);
};
isOdd (10);
isEven(10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment