![]()
|
|
In Ruby, conditionals are used to run code based on certain conditions. They allow your program to make decisions and execute different pieces of code depending on whether a condition is true or false. |
|
Ruby provides several constructs for implementing
conditionals, including |
|
The if statement |
|
|
|
You can add additional conditions using |
|
The unless statement |
|
|
|
If |
|
The cognitive penalty of unless |
|
Just like |
|
But don’t use this. It doesn’t read natural. |
|
And whether you’re using it with an |
|
On second thought, it doesn’t make sense with |
|
Note: The |
|
All of this is not to say |
|
Assigning the result to a variable |
|
In Ruby every statement evaluates to a single
expression. That means the whole if-else statement,
despite spanning multiple lines, evaluates to a single
value, noted by the last line of either of the blocks. |
|
So instead of writing this: |
|
You can write this: |
|
Inline if, unless |
|
If the code you have to run based on a condition is just a single line, often you can write the whole thing as a one-liner. |
|
Instead of this: |
|
You can write this: |
|
Ternary operator |
|
Inside the |
|
It takes 3 operands: a condition, a value if true, and a value if false. |
|
The Case When statement |
|
This is Ruby’s “Switch” statement. Use it when you need multiple “if else” logic. |
|
But you can do so much more: |
|
To understand how it works, you should know about the
|
|
This is how Ruby sees the above case statement: |
|
As you can see, the |
|
|
|
Try adding one more codition to |
|
Also, the |
Next topic: Loops .