JavaScript Bitwise Operators

JavaScript bitwise operators are used to perform bitwise operations on the operands JavaScript Bitwise Operators List: Operator Description Example & Bitwise AND (10==25 & 20==35) = false | Bitwise OR (20==30 | 20==40) = false ^ Bitwise XOR (20==30 ^ 30==40) = false ~ Bitwise NOT (~20) = -20 << Bitwise Left Shift (10<<2) = … Read more