Unsigned 오른쪽 시프트 할당 연산자 (>>>=)

unsigned 오른쪽 시프트 할당(>>>=) 연산자는 지정된 수 만큼 unsigned 오른쪽 시프트 연산 (en-US)을 수행하고 그 결과를 왼쪽 피연산자에 할당합니다.

시도해보기

구문

js
x >>>= y

설명

x >>>= yx = x >>> y와 같은 의미를 가집니다.

예제

unsigned 오른쪽 시프트 할당 연산자 사용

js
let a = 5; // (00000000000000000000000000000101)
a >>>= 2; // 1 (00000000000000000000000000000001)

let b = -5; // (-00000000000000000000000000000101)
b >>>= 2; // 1073741822 (00111111111111111111111111111110)

let c = 5n;
c >>>= 2n; // 1n

명세

Specification
ECMAScript Language Specification
# sec-assignment-operators

브라우저 호환성

BCD tables only load in the browser

같이 보기