$bitOr
The$bitOr operator performs a bitwise OR operation on integer values.
Input
- An array of integer values (at least 2 values required)
Output
- The result of performing a bitwise OR operation on all input values
Examples
Basic Bitwise OR
7 (binary: 101 OR 011 = 111)
Multiple Values
7 (binary: 100 OR 010 OR 001 = 111)

