What Does OR Operator Mean?
The OR operator is a Boolean operator which would return the value TRUE or Boolean value of 1 if either or both of the operands are TRUE or have Boolean value of 1. The OR operator is considered one of the basic logical operators along with AND and NOT in Boolean algebra. It is widely used in programming languages which support logical and comparison operators.
Techopedia Explains OR Operator
In digital electronics, the OR operator is represented by the OR logic gate. The OR operator returns the value of FALSE or Boolean 0 only if both operands are FALSE or have a Boolean value of 0. Similar to other logical operators, the OR operator can be combined with other logical operators to create more complex expressions. Similar to the AND operator, the OR operator evaluates the second operand only if required.