29_严格模式.html 598 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <script>
  10. // use strict 开启严格模式 且 只能写在当前作用域的最顶端
  11. // "use strict";
  12. // a = 10;
  13. // console.log(a);
  14. function foo(){
  15. var a = 30;
  16. "use strict";
  17. var a = 10;
  18. b = "hello";
  19. console.log(a)
  20. }
  21. a = 20;
  22. console.log(a);
  23. foo()
  24. </script>
  25. </body>
  26. </html>