什么是惊叹号“!” JavaScript中的运算符?

感叹号运算符将对表达式执行否定。

示例

您可以尝试运行以下代码,以了解如何在JavaScript中实现exclamation(!)运算符-

<html>

   <head>

      <title>JavaScript Boolean</title>

   </head>

   <body>

      <script>

         var answer = true;

         document.write(answer);

         document.write("<br>"+!answer);

      </script>

   </body>

</html>

以上是 什么是惊叹号“!” JavaScript中的运算符? 的全部内容, 来源链接: utcz.com/z/322114.html

回到顶部