| 1234567891011121314151617 | 
							- <!DOCTYPE html>
 
- <html lang="en">
 
- <head>
 
-     <meta charset="UTF-8">
 
-     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 
-     <title>Document</title>
 
- </head>
 
- <body>
 
-     <script>
 
-         /**
 
-          * 三元运算符 三目运算符
 
-          * 表达式 ?'表达式成立执行的语句' : '表达式不成立执行的语句'
 
-         */
 
-        console.log(5>40 ? 'yes' : 'no')
 
-     </script>
 
- </body>
 
- </html>
 
 
  |