Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript에서 Bitwise OR 할당 연산자(|=)란 무엇입니까?


왼쪽 피연산자와 오른쪽 피연산자를 OR 연산하고 그 결과를 왼쪽 피연산자에 할당합니다.

예시

다음 코드를 실행하여 Bitwise OR 할당 연산자로 작업하는 방법을 배울 수 있습니다 -

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

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