Computer >> Computer tutorials >  >> Programming >> Javascript

What is Bitwise Right Shift Operator (>>) in JavaScript?


The left operand’s value is moved right by the number of bits specified by the right operand.

Example

You can try to run the following code to learn how to work with Bitwise Right Shift Operator −

<html>
   <body>
      <script>
         var a = 2; // Bit presentation 10
         var b = 3; // Bit presentation 11

         document.write("(a >> b) => ");
         result = (a >> b);
         document.write(result);
      </script>
   </body>
</html>