私が持っている場合:
var obj= {
a:"something",
b:{
a:function (){
// Can I access obj properties through the this keyword here
}
}
};
関数内のキーワードをobj
介して のプロパティにアクセスできますか?this
obj.b.a
私が持っている場合:
var obj= {
a:"something",
b:{
a:function (){
// Can I access obj properties through the this keyword here
}
}
};
関数内のキーワードをobj
介して のプロパティにアクセスできますか?this
obj.b.a