Learn
Finally, Ruby has the boolean operator not (!
). !
makes true
values false
, and vice-versa.
!true # => false !false # => true
Instructions
1.
Set each variable to true
or false
depending on what value you expect the expression to return.
Take this course for free
By signing up for Codecademy, you agree to Codecademy's Terms of Service & Privacy Policy.