对于整个脚本

通过将语句 "use strict"; 放在任何其他语句之前,可以对整个脚本应用严格模式。

"use strict";
// strict mode now applies for the rest of the script

严格模式仅在你定义 use strict 的脚本中启用。你可以使用和不使用严格模式组合脚本,因为不同脚本之间不共享严格状态。

Version >= 6

注意: 默认情况下,ES2015 + 模块中编写的所有代码都是严格的。