I know this points to current object on which function operates. So here is the code as per the definition
function foo(){
alert(this); //output==window
}
So, now function foo is equal to window.foo() but now here
function foo(){
function fo(){
alert(this);
}
fo();
}
so,now when foo gets executed output is again window object why? since the nested this should refer to different object.since fo() is now not operating on window object as foo()==window.foo() .so nested function should now point to different object
see here for detail:
function foo()
{
alert(this);
function fo(){alert(this);}
as();
}
if now,var x=new foo();than "this" within the foo() method points to object object but the nested this points to global object right?now u should be clear what i meant to say


fo()sothis == window. – pimvdb Jan 4 at 12:45