what's the difference between them ?
①function's scope-->②[[scope]]---->③scope

var scope = 'window';
var someFunction = function(){
    something go here....
}

someFunction's scope
someFunction[[scope]]
window scope
is that right?

link|improve this question
2  
Please make your question clearer. I have no idea what you are asking. Variables in Javascript are either local to a function, or global: there are no other possibilities. – Colin Fine Dec 23 '11 at 10:49
In your example, there are only two "scopes" which are called lexical environments now: (1) The function's scope, (2) the global scope. – Šime Vidas Dec 23 '11 at 13:25
feedback

1 Answer

up vote 3 down vote accepted

If you want to understand the scope chain, you should read Richard Cornford's article on JavaScript Closures, particularly the part on Identifier Resolution, Execution Contexts and scope chains.

Briefly, the scope chain travels from variable/activation object to variable/activation object, stopping with the global object (since the global object is effectively the activation/variable object for the global execution context).

So in the case of:

var fred;

function foo() {
    alert(fred);
}

The identifier fred is made a property of the global variable/activation object (which in the case of global code is the global objet itself). When foo() is called, a new variable/activation object is created with a scope chain that includes the global object. The identifier fred is first resolved on the internal variable object, and since it won't be found there, the next object on the chain (the global object) is searched.

Similarly for:

function foo() {
    function bar() {
        alert(fred);
    }
    bar();
}

So when foo() is called, it then calls bar(), and now fred is resolved against firstly bar's variable object, then foo's, then the global object.

Once you understand execution context, you will also realise why calling the value of this "context" is misleading.

link|improve this answer
1  
Variable/Activation objects are called environment records since ES5... and the [[Scope]] of a function stores its lexical environment (which is the owner or the environment record). – Šime Vidas Dec 23 '11 at 13:26
Thanks, must get deeper into ES5, I've been a bit lazy and sort of ignoring it for now. But I guess the time has coming to get stuck in. – RobG Dec 24 '11 at 4:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.