JavaScript Operator: bitwise right shift
[this page | pdf | back links]
In JavaScript,
the >> operator is
the bitwise right shift operator.
For example, 6 >> 2 in binary notation is 110 shifted 2 bits to the right so is 1,
i.e. 1 in decimal notation.
NAVIGATION LINKS
Contents | Prev | Next | JavaScript Operators