def test
!!session[:test]
end
!! - what does this do? can we remove it and still assume it will work the same?
!! - what does this do? can we remove it and still assume it will work the same? |
|||||||
|
|
That would be the double bang (or bang bang). It's not really an operator in itself. It is really two |
|||||||||||
|
|
The first |
|||||
|
|
|
To address your second question, your method will change subtly if you remove the double negation since you'll be returning the object instead of TrueClass or FalseClass. The !! is generally frowned upon unless you explicitly need boolean values (for example, if you're building out an API). Since Ruby evaluates any non-nil and non-false value as truthy, it's usually safe just to return the object in question so that you can call its methods. |
|||
|
|