Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created September 9, 2020 09:45
Show Gist options
  • Save indreklasn/4c3d2d2241578a23123445b2c8af0a8d to your computer and use it in GitHub Desktop.
Save indreklasn/4c3d2d2241578a23123445b2c8af0a8d to your computer and use it in GitHub Desktop.
const isEven = (number) => {
return number % 2 === 0
}
module.exports = isEven
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment