How do i reduce the following code to one line in ruby?
unless(data["location"].nil?)
unless(data["location"]["country"].nil?)
unless(data["location"]["country"]["code"].nil?)
#some codes
end
end
end
|
How do i reduce the following code to one line in ruby?
|
|||||
|
|
You can use try method, this method supported from Rails 2.3 and has a native support from Ruby 1.9.
|
|||||||||
|
|
|
Ruby's |
|||||||||||
|
|
There is always the good old ...
|
|||||||||
|
|
You can bring out the big guns and use the
You'll get a bonus warning about undefining |
|||
|
|
|
I know this is evil, but it's late for me….
|
|||
|
|
|
An answer
But why? |
|||||
|
|
Add a method to your Hash class
Now, use this code to check if the nested key exists:
|
|||
|
|