Closed mendezjose closed 4 years ago
This is not a bug. false && true || true
is evaluated as (false && true) || true
, which is false || true
, which is true
.
(This also isn't the appropriate place for this kind of thing - might I recommend StackOverflow next time?)
Description: The expression "false && true || true" return true. But it should return false because of the short circuit evaluation.
eshost Output: