What’s the difference between the or and || operators in Ruby? Or is it just preference?
What’s the difference between the or and || operators in Ruby? Or is it
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.
It’s a matter of operator precedence.
||has a higher precedence thanor.So, in between the two you have other operators including ternary (
? :) and assignment (=) so which one you choose can affect the outcome of statements.Here’s a ruby operator precedence table.
See this question for another example using
and/&&.Also, be aware of some nasty things that could happen:
Both of the previous two statements evaluate to
true, but the second setsatofalsesince=precedence is lower than||but higher thanor.