![]()
|
|
|
|
|
|
true, false vs Truthy, Falsy (Caveat)The conditions you give in the conditionals must
evaluate to |
|
What? |
|
Yes. Truthy things are things that are considered true in the Eye Of The God. Falsy thingsā¦ are not. |
|
There are only two falsy things in Ruby: |
|
Everything else is truthy. Everything else. |
|
This means things like an empty string, empty
array, empty hash, the integer zero |
|
So be careful. |
|
Here, you probably expected the |
|
The right way to check for empty string is: |
|
Convert an Object to BooleanYou can get the boolean context of any ruby object
with the “bang” boolean negation operator |
|
|
|
|
|
These are useful when you define interrogative methods: |
|
Note that you don’t have to use the not not operator in the conditionals every time to check the object’s truthiness. You can use the object as-is. Ruby will still infer it correctly. (But be careful of the caveat above.) |
|
Next topic: Conditionals .