欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

new一个对象将会发生的事情

程序员文章站 2024-03-12 15:11:50
...

new一个对象将会发生的事情

    foo = "bar"
    function testThis(){
        this.foo = 'foo'//this为testThis这个函数(对象)
    }
    console.log(this.foo);//bar
    new testThis();//创建了一个对象,该对象的foo = 'foo',
    console.log(this.foo);//bar
    console.log(new testThis().foo)//foo