JavaScript Unsigned Right Shift Assignment Operator Last Updated : 24 Jan, 2023 Comments Improve Suggest changes Like Article Like Report In JavaScript ">>>=" is known as the unsigned right shift assignment bitwise operator. This operator is used to move a particular amount of bits to the right and returns a number that is assigned to a variable. Syntax: a >>>= b Meaning: a = a >>> b Return value: It returns the number after shifting of bits. Example 1: This example shows the basic use of the Javascript Unsigned Right Shift Assignment Operator. JavaScript <script> let a = 16 let b = 2 console.log(`${a}>>>=${b} is ${a >>>= b}`) </script> Output: 16>>>=2 is 4 Example 2: Using a variable to store the return value by >>> operator. JavaScript <script> let a = 6 let b = 3 c = a >>> b console.log(`${a}>>>${b} is ${c}`) console.log(`${15}>>>${2} is ${15 >>> 2}`) console.log(`${10}>>>${1} is ${10 >>> 1}`) </script> Output: 6>>>3 is 0 15>>>2 is 3 10>>>1 is 5 Comment More infoAdvertise with us Next Article JavaScript Unsigned Right Shift Assignment Operator T tarun007 Follow Improve Article Tags : JavaScript Web Technologies HTML Similar Reads Right Shift Assignment(>>=) Operator in JavaScript The Right Shift Assignment Operator is represented by ">>=". This operator shifts the first operand to the right and assigns the result to the variable. It can also be explained as shifting the first operand to the right in a specified amount of bits which is the second operand integer and the 1 min read JavaScript Assignment Operators Assignment operators are used to assign values to variables in JavaScript.JavaScript// Lets take some variables x = 10 y = 20 x = y ; console.log(x); console.log(y); Output20 20 More Assignment OperatorsThere are so many assignment operators as shown in the table with the description.OPERATOR NAMESH 5 min read Right Shift (>>) Bitwise Operator in JavaScript JavaScript bitwise right shift operator is used to operate on two operands where the left operand is the number and the right operand specifies the number of bits to shift towards the right. A copy of old leftmost bits is maintained and they have added again the shifting is performed. The sign bit i 2 min read Zero Fill Right Shift (>>>) Bitwise Operator in JavaScript JavaScript Zero Fill Right Shift Operator or Unsigned Right Shift Operator(>>>) is used for operating on the two operands. The first operand is the number and the right operand specifies the bits to shift towards the right modulo 32. In this way, the excess bits which are shifted towards th 2 min read Left Shift Assignment (<<=) Operator in JavaScript The Left Shift Assignment Operator is represented by "<<=". This operator moves the specified number of bits to the left and assigns that result to the variable. We can fill the vacated place by 0. The left shift operator treats the integer stored in the variable to the operator's left as a 32 2 min read Like