var o = function () {
this.a = 12;
};
console.log(o.a);//为什么是undefined?
function f() {
}
var o2 = new f();
console.log(o2.a);//为什么是12?
相关分类