プロトタイプ継承を使用する場合、プロトタイプ チェーンの 1 レベル上のプロパティとメソッドにアクセスする必要があります。
これは受け入れられる技術ですか?
function Cheese() {
this.weight = 100;
this.unit = 'g';
this.that = this; // not sure about this... does it create a circular reference?
}
Cheese.prototype.setWeight = function(myWeight) {
this.weight = myWeight;
}
var cheese = new Cheese();
var myCheddar = Object.create(cheese); // http://javascript.crockford.com/prototypal.html
myCheddar.setWeight(500);
console.log(myCheddar.weight + myCheddar.unit); //-> 100kg
console.log(myCheddar.that.weight + myCheddar.unit); //-> 500g