What does the following Javascript statement do to a?
a >>>= b;
|
|
What does the following Javascript statement do to
|
||||||||||||||||||||
|
|
|
It does the same thing as this:
Except that And |
||||||
|
|
|
It's a bitwise operator called zero-fill right shift. It will shift the binary representation of |
||
|
|
|
|
I right shifts the value in a the number of bits specified by the value in b, without maintaining the sign. It's like the >>= operator that rights shifts a value, only that one does not change the sign of the number. Example:
|
||||
|
|
|
Crockford points out that while JavaScript has bitwise operators like |
||
|
|