How to use unsigned right shift assignment operator (>>>=) operator in JavaScript

2 Answers

0 votes
const a = 15    // 00000000000000000000000000000010
let b = -5;     // 11111111111111111111111111111011

b >>>= a;

console.log(b); // 00000000000000011111111111111111

   
 
/*
run:
 
131071
 
*/
 

 



answered Nov 18, 2020 by avibootz
0 votes
let a = 5;            //  00000000000000000000000000000101
const b = 2;          //  00000000000000000000000000000010

a >>>= b;

console.log(a); //  00000000000000000000000000000001
 
 
    
  
/*
run:
  
1
  
*/

 



answered Nov 18, 2020 by avibootz

Related questions

1 answer 237 views
3 answers 224 views
3 answers 185 views
1 answer 127 views
1 answer 153 views
...