假设我们有这个脚本。
var apple = {
type: "macintosh",
color: "red",
getInfo: function () {
return this.color + ' ' + this.type + ' apple';
}
///more functions here....
}
如何让所有这些功能在严格模式下运行?我可以将“use strict”放在文件顶部,但 JSlint 不同意。另一种方法是在每个函数中都加上“use strict”,但有更好的选择吗?