Skip to content

Instantly share code, notes, and snippets.

@nitrotap
Created April 15, 2022 03:59
Show Gist options
  • Save nitrotap/245740dc82cd988d375af8e5aeb7d361 to your computer and use it in GitHub Desktop.
Save nitrotap/245740dc82cd988d375af8e5aeb7d361 to your computer and use it in GitHub Desktop.
function declaration regular function
function isOdd(n) {
if (n % 2 != 0) {
return true;
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment