This operator performs a logical (unsigned) right shift of the first operand. The second operand specifies how many bits to shift.
Syntax:
exp1 >>> exp2
Usage:
456 >>> 3 // evaluates to 57
-100 >>> 2 // evaluates to 1073741799 (0x3fffffe7)
This operator is not applicable to floating-point values.