1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!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>
- <div class="box"></div>
- <script>
- var str = "hello";
- var str1 = "<div class='box'></div>";
- var str2 = '<div class="box"></div>';
- var num;
- console.log(num);
- num2 = 10;
- console.log(num2);
- //1+2 = 3
- // 1+"hell"
- // var a = 1;
- // var b = 2;
- // var a = 1,b=2;
- // var a = true,b;
- // \反斜线开头的表示转义字符 \n 回车
- console.log("hello\nworld");
- console.log("he\"llo")
- console.log("hel\'lo");
- //NaN not a number
- // var str11 = "a";
- // var str12 = "b";
- var str11 = "11";
- var str12 = "2";
- console.log(str11<str12);
- </script>
- </body>
- </html>
|