使用严格'的示例在JSFiddle中

时间:2017-10-26 08:54:27

标签: javascript

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中出现错误。我必须以某种方式误解这个?

1 个答案:

答案 0 :(得分:2)

创建一个名为undefined的常量没有任何问题(除非在直接范围内已创建undefined变量)。

你的评论说“否则会无声地失败”,但你的代码不会这样做。

(() => {
    'use strict';
    const undefined = "some value"; 
    console.log("undefined is " + undefined);
})();

您链接到全局范围内的重新声明变量的示例。他们没有在更窄的范围内掩盖它们。