Calculate the bitwise OR of 2 numbers. Meant to be used with Array.prototype.reduce.
number
Array.prototype.reduce
Time complexity: O(1)
Space complexity: O(1)
First operand
Second operand
The bitwise OR of a and b
a
b
Reducers
const array = [5, 3];array.reduce(Bitwise.or); // 7 Copy
const array = [5, 3];array.reduce(Bitwise.or); // 7
Calculate the bitwise OR of 2 bigints. Meant to be used with Array.prototype.reduce.
bigint
const array = [5n, 3n];array.reduce(Bitwise.or); // 7n Copy
const array = [5n, 3n];array.reduce(Bitwise.or); // 7n
Calculate the bitwise OR of 2
number
s. Meant to be used withArray.prototype.reduce
.Time complexity: O(1)
Space complexity: O(1)