>>=

Shifts the first item in binary representation the value of the second item of bits to the right, discarding bits shifted off, and assigns the new value to the first item.

Syntax

valueA >>= valueB

Example

Remarks

"valueA >>= valueB" is shorthand for "valueA = valueA >> valueB".

text_javascript aptana_docs