[Boolean Operators]
Description
Logical OR results in a true
if either of the two operands is true
.
Example Code
This operator can be used inside the condition of an if statement.
if (x > 0 || y > 0) { // if either x or y is greater than zero // statements }
Tip
Do not confuse the boolean || (double pipe) operator with the bitwise OR operator | (single pipe).
See also
- [Language] | Bitwise OR
Language Reference Home
The text of the 86Duino reference is a modification of the Arduino reference and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.