ใช้ตัวดำเนินการ Bitwise Right Shift ให้เลื่อนบิตจากด้านซ้าย ไม่พิจารณาบิตขวาสุด
ตัวอย่าง
คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อเรียนรู้วิธีการทำงานกับ JavaScript Bitwise Right Shift Operator
<!DOCTYPE html> <html> <body> <script> document.write("Bitwise Right Shift Operator<br>"); document.write(-7>>1); </script> </body> </html>