How do I avoid doing this?
if boolean_array[day] && boolean_array[day][slot] && boolean_array[day][slot].zero?
# boolean_array[day][slot] element exists
end
|
1
|
How do I avoid doing this?
|
|||
|
|
|
|
Basically, you want an Raganwald has one popular implementation. |
||
|
|
|
if possible, initialize the days and that way you can do the check for boolean_array[day][slot].nil? |
||
|
|
|
|
One alternative is to use an inline rescue:
|
||
|
|
|
I like Chuck's
|
||
|
|