gpt4 book ai didi

javascript - javascript 中的上下文

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:50:53 26 4
gpt4 key购买 nike

function katana(){
this.isSharp = true;
}
katana();
assert( isSharp === true, "A global object now exists with that name and value." );

var shuriken = {
toss: function(){
this.isSharp = true;
}
};
shuriken.toss();
assert( shuriken.isSharp === true, "When it's an object property, the value is set within the object." );

我实际上不明白这段代码试图说明什么?。谁能解释一下什么是 JavaScript 中的上下文以及上下文在上面的代码中究竟代表什么?

最佳答案

嗯,第一个示例中的 this === window 和第二个示例中的 this === shuriken 的原因都与创建这些函数的位置有关.请注意,当您在对象外部定义 shuirken.toss 时,this 指向 window 对象。当您使用 new 调用 katana 时,this 指向新创建的对象。

关于javascript - javascript 中的上下文,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14048323/

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