對於功能
通過在函式宣告的開頭新增 "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
}
嚴格模式也適用於任何內部範圍的功能。