Im sure I am missing something here but none the less.
foo['bar'] = nil
if(foo['bar'] == nil)
puts "foo bar is nil :("
However, nothing happens? Any thoughts?
|
Im sure I am missing something here but none the less.
However, nothing happens? Any thoughts? |
||||
|
|
You need an
Note that there is a
As Arkku commented, a single line
Which is better depends on the context (e.g. do you want to emphasise the condition or emphasise what happens if the condition is true) and a certain amount of personal preference. But as an example you might put a guard condition at the start of a method e.g.
|
||||
|
nil is treat it exactly like false in a condition. So you don't need test if your variable is really nil.
In ruby just nil and false return false in condition statement. |
|||||||||||
|
|
|||
|
|