Shifts the first item in binary representation the value of the second item bits to the right, discarding bits shifted off, shifting in zeros from the left, and assigns this total to the first item.
Syntax
valueA >>>= valueB
Example
Remarks
"valueA >>>= valueB" is shorthand for "valueA = valueA >>> valueB".