Skip to content

Instantly share code, notes, and snippets.

@Chell0
Created February 12, 2019 11:21
Show Gist options
  • Save Chell0/40b7e112c2ba5fcba8df649d31020860 to your computer and use it in GitHub Desktop.
Save Chell0/40b7e112c2ba5fcba8df649d31020860 to your computer and use it in GitHub Desktop.
Even or Odd
/*
Create a function (or write a script in Shell) that takes an integer as an argument and returns "Even" for even numbers or "Odd" for odd numbers.
*/
function even_or_odd(number) {
// Check whether it is even or odd
if (number % 2 == 0) {
return "Even";
} else {
return "Odd";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment