demo09-js逻辑运算符
Posted huaibin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了demo09-js逻辑运算符相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> </body> <script type="text/javascript"> //&& : 与 并且关系 //|| : 或 或者关系 //! : 非 取反 关系 // 可以不写;分号,但是为了保持一致 var a = 10; var b = 20; // 必须二者都为真 var res = a > 5 && b <30; // 有一个为真就为真 var res1 = a > 5 || b <30; var result = true console.log(res) console.log(res1) // 取反, console.log(! result) </script> </html> <!-- 逻辑运算符 -->
以上是关于demo09-js逻辑运算符的主要内容,如果未能解决你的问题,请参考以下文章