Flip the Boolean

Published by Matt in

Create a function that reverses a boolean value and returns the string "boolean expected" if another variable type is given.

Examples

reverse(true) ➞ false

reverse(false) ➞ true

reverse(0) ➞ "boolean expected"

reverse(nil) ➞ "boolean expected"

Notes

  • Don't forget to return the result.
  • If you get stuck on a challenge, find help in the Resources tab.
  • If you're really stuck, unlock solutions in the Solutions tab.
Watch a quick demo on how Edabit works.