gpt4 book ai didi

javascript - 在严格模式下,什么被认为是 "gaining access to the global object"?

转载 作者:行者123 更新时间:2023-11-29 20:11:17 25 4
gpt4 key购买 nike

http://jsbin.com/ifabem/2/edit

"use strict";

window.x = "Hello World";
alert(x); // this does't throw an exception in strict mode

为什么在最后一条语句中直接访问x不违反严格模式并抛出异常?

是否违规只是将新值写入全局对象,但允许读取甚至修改现有对象?

最佳答案

规范中没有出现“获得对全局对象的访问权”这一短语,因此没有明确的定义;但是查看规范的附录 C(严格模式影响的非规范列表),我认为唯一可以这样描述的限制是:

Assignment to an undeclared identifier or otherwise unresolvable reference does not create a property in the global object. When a simple assignment occurs within strict mode code, its LeftHandSide must not evaluate to an unresolvable Reference. If it does a ReferenceError exception is thrown (8.7.2).

因此,如果不使用 varwindow. 或诸如此类的东西,则不允许您添加 属性到全局对象,但是什么也没有阻止您获取全局对象的属性 — 甚至设置现有属性的值。

(顺便说一句,§8.7.2 的相关部分脱离上下文意义不大,但为了完整起见,它是这样的:

3. If IsUnresolvableReference(V), then
    a. If IsStrictReference(V) is true, then
        i. Throw ReferenceError exception.
    b. Call the [[Put]] internal method of the global object, passing
        GetReferencedName(V) for the property name, W for the value,
        and false for the Throw flag.

)

关于javascript - 在严格模式下,什么被认为是 "gaining access to the global object"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9655366/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com