如何在 JavaScript IF 语句中使用 OR 条件?

javascriptweb developmentfront end technology更新于 2024/4/24 10:34:00

要在 JavaScript IF 语句中使用 OR 条件,请使用 || 运算符,即逻辑 OR 运算符。如果两个操作数中的任何一个非零,则条件为真。

以下是在 JavaScript 中使用运算符 || 的方法

示例

<html>
   <body>
      <script>
         var a = true;
         var b = false;

         document.write("(a || b) => ");
         result = (a || b);
         document.write(result);
      </script>
   </body>
</html>

相关文章