对于功能
通过在函数声明的开头添加 "use strict";
语句,也可以将严格模式应用于单个函数。
function strict() {
"use strict";
// strict mode now applies to the rest of this function
var innerFunction = function () {
// strict mode also applies here
};
}
function notStrict() {
// but not here
}
严格模式也适用于任何内部范围的功能。