What does the following Javascript statement do to a?
a >>>= b;
|
What does the following Javascript statement do to
| |||||||||||||||||||||
feedback
|
|
It does the same thing as this:
Except that And | |||||||||
feedback
|
|
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:
| |||||
|
feedback
|
|
It's a bitwise operator called zero-fill right shift. It will shift the binary representation of | |||
|
feedback
|
|
Crockford points out that while JavaScript has bitwise operators like | |||
|
feedback
|