Estoy tratando de definir una clase javascript con una propiedad de matriz y su subclase. El problema es que todas las instancias de la subclase de alguna manera "compartir" la propiedad de matriz:Herencia de Javascript y matrices
// class Test
function Test() {
this.array = [];
this.number = 0;
}
Test.prototype.push = function() {
this.array.push('hello');
this.number = 100;
}
// class Test2 : Test
function Test2() {
}
Test2.prototype = new Test();
var a = new Test2();
a.push(); // push 'hello' into a.array
var b = new Test2();
alert(b.number); // b.number is 0 - that's OK
alert(b.array); // but b.array is containing 'hello' instead of being empty. why?
Como se puede ver que no tengo este problema con los tipos de datos primitivos ... ¿Alguna sugerencia?
Ver http://stackoverflow.com/questions/1485824/javascript -heritance-objects-declared-in-constructor-are-shared-between-inst –