Syntax Lookup

Enter some language construct you want to know more about.
This is the unsigned right shift operator.

>>> shifts the bits of an integer to the right and fills with zero bits.

Example

ReScriptJS Output
let result = -1 >>> 1

References