The bitwise NOT operator (~
) inverts the bits of its operand.
~a
The operands are converted to 32-bit integers and expressed by a series of bits (zeroes and ones). Numbers with more than 32 bits get their most significant bits discarded. For example, the following integer with more than 32 bits will be converted to a 32 bit integer:
Before: 11100110111110100000000000000110000000000001 After: 10100000000000000110000000000001
Each bit in the first operand is paired with the corresponding bit in the second operand: first bit to first bit, second bit to second bit, and so on.
The operator is applied to each pair of bits, and the result is constructed bitwise.
The truth table for the NOT
operation is:
a | NOT a |
---|---|
0 | 1 |
1 | 0 |
9 (base 10) = 00000000000000000000000000001001 (base 2) -------------------------------- ~9 (base 10) = 11111111111111111111111111110110 (base 2) = -10 (base 10)
Bitwise NOTing any number x
yields -(x + 1)
. For example, ~-5
yields 4
.
Note that due to using 32-bit representation for numbers both ~-1
and ~4294967295
(232-1) results in 0
.
~0; // -1 ~-1; // 0 ~1; // -2
Desktop | ||||||
---|---|---|---|---|---|---|
Bitwise NOT (~a ) |
1 | 12 | 1 | 3 | 3 | 1 |
Mobile | ||||||
---|---|---|---|---|---|---|
Bitwise NOT (~a ) |
1 | 18 | 4 | 10.1 | 1 | 1.0 |
Server | |
---|---|
Bitwise NOT (~a ) |
0.1.100 |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://wiki.developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Bitwise_NOT