![]() ![]() ![]() | |
![]() | |
![]() | |
![]() |
Flash Player 5.
expression1
>>>=
expression2
expression1
A number or expression to be shifted left.
expression2
A number or expression that converts to an integer from 0 to 31.
Nothing.
Operator (bitwise compound assignment); performs an unsigned bitwise right-shift operation and stores the contents as a result in expression1
. The following two expressions are equivalent:
A >>>= B
A = (A >>> B)
>>> (bitwise unsigned right shift)
, >>= (bitwise right shift and assignment)
![]() | |
![]() | |
![]() | |
![]() ![]() ![]() |