Disabling the Right Mouse Button



write a JavaScript code to disable the right mouse click.


<html>
  <head>
    <script>

          document.addEventListener('contextmenu',event=>event.preventDefault());

    </script>
  </head>
<body>

        <h3><p>Disabling the right click of mouse button.</p></h3>

  </body>
</html>

Output: