I know there is a shorthand one-line if/else statement in Ruby:
a ? b : c
Is there one for just a single if statement? Instead of writing this:
if a
# do something
end
Is there a shorthand version of this?
|
I know there is a shorthand one-line if/else statement in Ruby:
Is there one for just a single
Is there a shorthand version of this? |
||||
| show 1 more comment |
|
You can use post conditions (don't mind the name, it will be evaluated before the code. And
|
|||||||
|
This will first evaluate the |
||||
|
|
a ? b : csyntax is an expression, not a statement -- it evaluates to single value. – Jason LeBrun Apr 26 '12 at 18:46a ? b : cis called a ternary expression. – Andrew Marshall Apr 26 '12 at 18:48