nil || false returns false and false || nil returns nil. Does anyone have an explanation for this?
nil || false returns false and false || nil returns nil . Does anyone
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In Ruby, everything is an expression, and an expression will return the last value evaluated within it.
For both of your examples, the left side of the
||expression evaluates to a falsy value, so Ruby then evaluates the right side, and returns it.