new一个对象将会发生的事情
程序员文章站
2024-03-12 15:11:50
...
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
上一篇: java web验证码实现代码分享