源代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>享学课堂</title> </head> <body> <h1>使用 "use strict":</h1> <h3>重复参数名是不允许的.</h3> <p>激活你的浏览器调试(F12)查看错误报告.</p> <script> "use strict"; function x(p1, p1) {}; // This will cause an error </script> </body> </html>
运行结果