在Converting mistakes into errors
下阅读:https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Strict_mode,想要做一个明确的例子。所以我去了JSFiddle,试图看看'use strict';
实际上取得了什么。这是代码:
(() => {
// Strict mode makes assignments which would otherwise silently fail to throw an exception.
'use strict';
try {
const undefined = 666; // throws a TypeError
} catch(error) {
console.error(error)
}
console.log('Is this read?');
})();
https://jsfiddle.net/cvxau3m7/
我期待在firebug中出现错误。我必须以某种方式误解这个?
答案 0 :(得分:2)
创建一个名为undefined
的常量没有任何问题(除非在直接范围内已创建undefined
变量)。
你的评论说“否则会无声地失败”,但你的代码不会这样做。
(() => {
'use strict';
const undefined = "some value";
console.log("undefined is " + undefined);
})();
您链接到全局范围内的重新声明变量的示例。他们没有在更窄的范围内掩盖它们。