| 12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- </head>
- <body>
- </body>
- <script>
- // && 优先级高预||
- // console.log(true && NaN && 0 && "") // Nan
- // console.log(1 && "123" && 0 && false) //0
- // console.log("hello" && "123" && 1 && true) // true
- // // 0|| Nan || ""
- // console.log(0|| NaN || "hello" && "") // ""
- // //true && "" ""
- // // undefined ||NaN || ""
- // console.log(undefined ||NaN || true && "") //""
- // console.log(true && 123 || NaN && false) //123
- var age = 20
- if(age > 18){
- console.log("成年")
- }else{
- console.log("未成年")
- }
- </script>
- </html>
|