if i have :
var obj= {
a:"something",
b:{
a:function (){
// Can I access obj properties through the this keyword here
}
}
};
Can I access properties of obj through the this keyword in the obj.b.a function?