StackOverflow 文档 JavaScript 教程 严格的模式 重复参数 重复参数 Created: November-22, 2018 严格模式不允许你使用重复的函数参数名称。 function foo(bar, bar) {} // No error. bar is set to the final argument when called "use strict"; function foo(bar, bar) {}; // SyntaxError: duplicate formal argument bar 函数作用域严格模式全局属性的更改