So here are the
$y = 0 | 2 | 4; # answer is 6
$x = 0 || 2 || 4; # answer is 2
I know why $y is 6 because it's using the OR operator on each number and 2 | 4 = 6 but for $x...
Why is it 2?
|
So here are the
I know why Why is it |
|||||
|
|
Because 2 is the first non-falsy item and a logical OR short circuits. It evaluates zero which is false, then 2 which is not false so it is done and returns 2. Consider the output of the following example:
This will output |
|||||||||||||
|
|
Its a short-circuiting, value-preserving logical or. Basically, it evaluates each of the things between the edit There are two important features of perl's logical ops
Both of these features are very important and they combine to make |
|||||||||
|
|
While the operators look similar, their purpose is actually different. From perldoc perlop:
Compared to:
The purpose of Since the only interesting two results from In the first statement: In the second statement: Interestingly,
Which is very handy for storing multiple boolean values in one number, which can be checked with the
There are 10 kinds of people: Those who understand binary numbers, and those who don't. |
|||||||
|
is more or less equivalent to
Or in English,
Sometimes you'll see them chained.
is just
so just apply the above recursively. You end up with the result of the first expression that returns true, or the result of the last if none are true. |
|||
|
|