bitOr
x | y
bitOr(x, y)
Bitwise OR operation. Performs the logical inclusive OR operation on each pair of corresponding bits of the two given values. The result in each position is 1 if the first bit is 1 or the second bit is 1 or both bits are 1, otherwise, the result is 0.
Try it yourself:
$1 | 5 | 3
| |
$2 | bitOr([1, 2, 3], 4)
|