次のコードが与えられた場合、「サブ」オブジェクト内からオブジェクトのプロパティにアクセスできますか?
私はこれを完全に間違っていると思いますが、正しいパターンがここにあるのかわかりません。どんな助けでも大歓迎です。
function MainObject(){
this.someProperty = "asdf";
return this;
}
MainObject.prototype.subClass = {};
MainObject.prototype.subClass.sayHi = function(){
// 'this' refers to the instance of MainObject.subClass
// How do I get to the instance's MainObject.someProperty property from here,
// without calling "widget.someProperty"?
};
widget = new MainObject();