왼쪽 피연산자의 값은 오른쪽 피연산자가 지정한 비트 수만큼 오른쪽으로 이동합니다.
예시
다음 코드를 실행하여 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>