Skip to content

Instantly share code, notes, and snippets.

@amejiarosario
Last active January 10, 2020 23:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amejiarosario/6862c31759b7a989ea88b70857b018ee to your computer and use it in GitHub Desktop.
Save amejiarosario/6862c31759b7a989ea88b70857b018ee to your computer and use it in GitHub Desktop.
function isEvenOrOdd(n) {
return n % 2 ? 'Odd' : 'Even';
}
console.log(isEvenOrOdd(10)); // => Even
console.log(isEvenOrOdd(10001)); // => Odd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment