123456789101112131415161718192021222324252627282930313233343536 |
- <!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>
- // var a = 10;
- // var a = 20;
- // b = 10;
- // var b;
- // let a = 10;
- // var a = 10;
- // console.log(window.a);
- // let b = 20;
- // console.log(window.b);
- // const c = 30;
- // console.log("hello");
- let a = 10;
- a = 20;
- console.log(a);
- const b = 20;
- b = 30;
- console.log(b);
- </script>
- </body>
- </html>
|