bxor(a, b)
Return the bitwise exclusive or of the integers a and b.
exclusive or
a
b
The inputs are treated as if represented in two's complement, even if they are not represented that way internally.
bxor(5, 3) // 6 bxor(2, 10) // 8
Core Module Index | Contents