비트 중 하나가 1이면 Bitwise OR(|) 연산자를 사용할 때 1이 반환됩니다.
예시
다음 코드를 실행하여 JavaScript Bitwise OR 연산자로 작업하는 방법을 배울 수 있습니다.
<!DOCTYPE html> <html> <body> <script> document.write("Bitwise OR Operator<br>"); // 7 = 00000000000000000000000000000111 // 1 = 00000000000000000000000000000001 document.write(7 | 1); </script> </body> </html>