I want to check whether the “user” key is present or not in the session hash. How can I do this?

Note that I don’t want to check whether the key’s value is nil or not. I just want to check whether the “user” key is present.

8 s
8

Hash‘s key? method tells you whether a given key is present or not.

session.key?("user")

Leave a Reply

Your email address will not be published. Required fields are marked *