1234567891011121314151617181920212223 |
- <!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>
- "use strict"
- // 严格模式
- // var a = 10;
- // var a = "hello";
- // console.log(a);
- // a=10;
- var a = 10;
- function foo(){
- console.log(this.a);
- }
- foo();
- </script>
- </body>
- </html>
|