美文网首页
Execution context

Execution context

作者: Zihowe | 来源:发表于2017-08-28 05:35 被阅读14次

    function 会创建一个新的Execution contextobject 不会。

    下面的代码,如果firstname前不加this,那么firstname就会在global context里面查找firtname,然后会报错。

    object 会有一个新的this
    使用this指代当前的object

    var person = {
        firstname: 'Default',
        lastname: 'Default',
        greet: function() {
            return 'Hi ' + this.firstname;   
        }
    }
    

    相关文章

      网友评论

          本文标题:Execution context

          本文链接:https://www.haomeiwen.com/subject/eikwdxtx.html