Skip to content

Instantly share code, notes, and snippets.

@Aizazahmed-7
Last active May 8, 2024 12:07
Show Gist options
  • Save Aizazahmed-7/075327b845fa3feb595ca0b66af73106 to your computer and use it in GitHub Desktop.
Save Aizazahmed-7/075327b845fa3feb595ca0b66af73106 to your computer and use it in GitHub Desktop.
check if even
const isEven(input) => {
if (input % 2 ===0 ) return true
return false
//edit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment