function Foo(){ } Foo.prototype.a = 1var f1 = new Foovar f2 = new Foo()console.log(f1.a,f2.a)
如上面的代码,new Foo的时候为什么可以加括号也可以不加括号?
梦里花落0921
相关分类