参照渡し
var 子 = function(_parent){ this.__parent = _parent; }; var 親 = function(){ this.value = 1; this.child = new 子(this); };
という感じだと
var p = new 親(); p.value = 1000; console.log('親: ', p.value); // 1000が出る console.log('子: ', p.child.__parent.value); // 1000が出る
こうなる。使える。