Created
September 9, 2020 09:45
-
-
Save indreklasn/4c3d2d2241578a23123445b2c8af0a8d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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