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 函式作用域嚴格模式全域性屬性的更改