Suppose we have 1
and this number in base 2 is:
00000000000000000000000000000001
Now I want to flip all bits to get following result:
11111111111111111111111111111110
As far as I know, the solution is to use the ~
(bitwise NOT operator) to flip all bits, but the result of ~1
is -2
:
console.log(~1); //-2
console.log((~1).toString(2)); //-10 (binary representation)
Why do I get this strange result?
There are 2 integers between
1
and-2
:0
and-1
1
in binary is00000000000000000000000000000001
0
in binary is00000000000000000000000000000000
-1
in binary is11111111111111111111111111111111
-2
in binary is11111111111111111111111111111110
("binary" being 2's complement, in the case of a bitwise not
~
)As you can see, it's not very surprising
~1
equals-2
, since~0
equals-1
.As @Derek explained, These bitwise operators treat their operands as a sequence of 32 bits.
parseInt
, on the other hand, does not. That is why you get some different results.Here's a more complete demo:
This is the expected behavior. According to mdn:bitwise-not.
The part you probably don't understand is that
[11111111111111111111111111111110]₂ = [10]₂
¹, if expressed as a signed integer. The leading1
s can be as many as you want and it's still the same number, similar to leading0
s in unsigned integers/decimal.¹
[10]₂
specifies that10
should be interpreted as base 2 (binary)Numbers in JavaScript are floating point numbers, stored and represented by IEEE 754 standard.
However, for bitwise operations, the operands are internally treated as signed 32-bit integers represented by two's complement format:
A negative number's positive counterpart is calculated the same way. Thus we have:
Note that
Number.toString()
is not supposed to return the two's complement representation for base-2.The expression
(-2).toString(2)
yields-10
which is the minus sign (-
) followed by base-2 representation of2
(10
).A simple way to remeber how two's complement notation works is imagine it's just a normal binary, except its last bit corresponds to the same value negated. In my contrived three-bit two's complement first bit is
1
, second is2
, third is-4
(note the minus).So as you can see, a bitwise not in two's complement is
-(n + 1)
. Surprisingly enough, applying it to a number twice gives the same number:It is obvious when talking bitwise, but not so much in its arithmetical effect.
Several more observations that make remebering how it works a bit easier:
Notice how negative values ascend. Quite the same rules, with just 0 and 1 swapped. Bitwise NOTted, if you will.
By cycling that list of binaries by half of the total amount of numbers in there, you get a typical sequence of ascending binary numbers starting at zero.
It's two's complement arithmetic. Which is the equivalent of "tape counter" arithmetic. Tape recorders tended to have counters attached (adding machines would likely be an even better analogy but they were obsolete already when 2s complement became hip).
When you wind backwards 2 steps from 000, you arrive at 998. So 998 is the tape counter's 10s complement arithmetic representation for -2: wind forward 2 steps, arrive at 000 again.
2s complement is just like that. Wind forward 1 from 1111111111111111 and you arrive at 0000000000000000, so 1111111111111111 is the representation of -1. Wind instead back another 1 from there, and you get 1111111111111110 which then is the representation of -2.
In computer science it's all about interpretation. For a computer everything is a sequence of bits that can be interpreted in many ways. For example
0100001
can be either the number 33 or!
(that's how ASCII maps this bit sequence).Everything is a bit sequence for a computer, no matter if you see it as a digit, number, letter, text, Word document, pixel on your screen, displayed image or a JPG file on your hard drive. If you know how to interpret that bit sequence, it may be turned into something meaningful for a human, but in the RAM and CPU there are only bits.
So when you want to store a number in a computer, you have to encode it. For non-negative numbers it's pretty simple, you just have to use binary representation. But how about negative numbers?
You can use an encoding called two's complement. In this encoding you have to decide how many bits each number will have (for example 8 bits). The most significant bit is reserved as a sign bit. If it's
0
, then the number should be interpreted as non-negative, otherwise it's negative. Other 7 bits contain actual number.00000000
means zero, just like for unsigned numbers.00000001
is one,00000010
is two and so on. The largest positive number that you can store on 8 bits in two's complement is 127 (01111111
).The next binary number (
10000000
) is -128. It may seem strange, but in a second I'll explain why it makes sense.10000001
is -127,10000010
is -126 and so on.11111111
is -1.Why do we use such strange encoding? Because of its interesting properties. Specifically, while performing addition and subtraction the CPU doesn't have to know that it's a signed number stored as two's complement. It can interpret both numbers as unsigned, add them together and the result will be correct.
Let's try this: -5 + 5. -5 is
11111011
,5
is00000101
.The result is 9 bits long. Most significant bit overflows and we're left with
00000000
which is 0. It seems to work.Another example: 23 + -7. 23 is
00010111
, -7 is11111001
.Again, the MSB is lost and we get
00010000
== 16. It works!That's how two's complement works. Computers use it internally to store signed integers.
You may have noticed that in two's complements when you negate bits of a number
N
, it turns into-N-1
. Examples:~00000000
==11111111
== -1~00000001
==11111110
== -2~01111111
==10000000
== -128~10000000
==01111111
== 127This is exactly what you have observed: JS is pretending it's using two's complement. So why
parseInt('11111111111111111111111111111110', 2)
is 4294967294? Well, because it's only pretending.Internally JS always uses floating point number representation. It works in a completely different way than two's complement and its bitwise negation is mostly useless, so JS pretends a number is two's complement, then negates its bits and converts it back to floating point representation. This does not happen with
parseInt
, so you get 4294967294, even though binary value is seemingly the same.