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