简单教程
提交运行
代码编辑器:
<h2>全局 "use strict" 声明</h2> <p>浏览器按下 F12 开启调试模式,查看报错信息</p> <script> "use strict"; myFunction(); function myFunction() { y = 3.14; // 报错 (y 未定义) } </script>
运行结果: