Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

Logical NOT Operator (!) ใน JavaScript คืออะไร?


ตัวดำเนินการ NOT แบบลอจิกจะย้อนกลับสถานะทางลอจิคัลของตัวถูกดำเนินการ หากเงื่อนไขเป็นจริง ตัวดำเนินการ NOT แบบลอจิคัลจะทำให้เป็นเท็จ

<html>
   <body>
      <script>
         var a =true;
         document.write("a = ");
         document.write(a);
         result =!a;
         document.write("<br>!a = ");
         document.write(result);
      </script>
   </body>
</html>