Given an integer n, return true if n is even and false if n is odd. Use bitwise operations instead of the modulo operator.
isEven(4) => true
isEven(7) => false
Waiting for you...
CodeBot will comment on your code as you write...
Click "Run Code" or press Ctrl+Enter to test your solution