EN
JavaScript - bitwise operators
8
points
JavaScript like other languages provides bitwise operators.
Bitwise operators:
| Operator | Symbol | Example |
| NOT | ~ |
|
| AND | & |
|
| OR | | |
|
| XOR | ^ |
|
TODO: add other operators