xor symbol javascript code example
Example 1: javascript xor
//make an xor condition in javascript
if ((a && !b) || (!a && b)) {
}
Example 2: js Bitwise Operators
Javascript Bitwise Operators
& AND statement
| OR statement
~ NOT
^ XOR
<< Left shift
>> Right shift
>>> Zero fill right shift