我创建了对象
e this
testObj.prototype = {
cVar: 15,
init: function(c){
/*initialization code*/
this.cVar = c;
}
};
var a = new testObj(10);
var b = new testObj(20);
现在两个对象的cVar值都是20.它们是否共享变量?我如何为每个对象获得单独的变量?
答案 0 :(得分:6)
是的,他们是共享的。对于单独的属性,在构造函数中定义它们:
function Ctor() {
this.notShared = 1;
};
Ctor.prototype.shared = 2;