Skip to content

Instantly share code, notes, and snippets.

@lelouchB
Last active July 25, 2019 06:10
Show Gist options
  • Save lelouchB/e7650e5e775387897ea7a848f72ea9d2 to your computer and use it in GitHub Desktop.
Save lelouchB/e7650e5e775387897ea7a848f72ea9d2 to your computer and use it in GitHub Desktop.
let checkNumber = function check (num){
return (num %2==0)?"even" : "odd"
}
console.log(checkNumber(50))
// even
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment