Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the scope of variables in javascript? Do they have the same scope inside as opposed to outside a function? Or does it even matter? Also, where are the variables stored if they are defined globally?

share|improve this question

9 Answers

up vote 633 down vote accepted

I think about the best I can do is give you a bunch of examples to study. Javascript programmers are practically ranked by how well they understand scope. It can at times be quite counter-intuitive.

// a globally-scoped variable
var a=1;

// global scope
function one(){
    alert(a); 
}

// local scope
function two(a){
    alert(a);
}

// local scope again
function three(){
  var a = 3;
  alert(a);
}

// Intermediate: no such thing as block scope in javascript
function four(){
    if(true){
        var a=4;
    }

    alert(a); // alerts '4', not the global value of '1'
}


// Intermediate: object properties
function Five(){
    this.a = 5;
}


// Advanced: closure
var six = function(){
    var foo = 6;

    return function(){
        // javascript "closure" means I have access to foo in here, 
        // because it is defined in the function in which I was defined.
        alert(foo);
    }
}()


// Advanced: prototype-based scope resolution
function Seven(){
  this.a = 7;
}

// [object].prototype.property loses to [object].property in the scope chain
Seven.prototype.a = -1; // won't get reached, because 'a' is set in the constructor above.
Seven.prototype.b = 8; // Will get reached, even though 'b' is NOT set in the constructor.



// These will print 1-8
one();
two(2);
three();
four();
alert(new Five().a);
six();
alert(new Seven().a);
alert(new Seven().b);
share|improve this answer
65  
Not even close to being comprehensive, but this is maybe the must-know set of Javascript scope tricks one needs to effectively even READ modern javascript. – Triptych Feb 1 '09 at 9:08
9  
dude, awesome examples – sova Jun 17 '11 at 18:18
5  
A great answer: +1 for mentioning that the prototype chain looses to [object].property. Saved me opening a duplicate question. – aaronsnoswell Jul 7 '11 at 3:57
8  
Wonderful! Even non-JS developers can understand this very clearly. – Romi Halasz Feb 17 '12 at 14:17
15  
A highly rated answer, not sure why. It's just a bunch of examples without proper explanation, then seems to confuse prototype inheritance (i.e. property resolution) with the scope chain (i.e. variable resolution). A comprehensive (and accurate) explanation of scope and property resolution is in the comp.lang.javascript FAQ notes. – RobG Sep 10 '12 at 0:35
show 8 more comments

Javascript uses scope chains to establish the scope for a given function. There is typically one global scope, and each function defined has its own nested scope. Any function defined within another function has a local scope which is linked to the outer function. It's always the position in the source that defines the scope.

An element in the scope chain is basically a Map with a pointer to its parent scope.

When resolving a variable, javascript starts at the innermost scope and searches outwards.

share|improve this answer
10  
+1 for explaining scope chains. – Török Gábor Apr 6 '10 at 11:28

Variables declared globally have a global scope. Variables declared within a function are scoped to that function, and shadow global variables of the same name.

(I'm sure there are many subtleties that real JavaScript programmers will be able to point out in other answers. In particular I came across this page about what exactly this means at any time. Hopefully this more introductory link is enough to get you started though.)

share|improve this answer
2  
I'm afraid to even begin answering this question. As a Real Javascript Programmer, I know how quickly the answer could get out of hand. Nice articles. – Triptych Feb 1 '09 at 8:33
3  
@Triptych: I know what you mean about things getting out of hand, but please add an answer anyway. I got the above just from doing a couple of searches... an answer written by someone with actual experience is bound to be better. Please correct any of my answer which is definitely wrong though! – Jon Skeet Feb 1 '09 at 8:37
2  
@Downvoter: Care to comment? – Jon Skeet Jun 29 '11 at 11:00
1  
@JonSkeet stumbled upon this question. Your previous comment made me lol as a result I voted it back up for you hehe – mmmshuddup Nov 11 '11 at 8:48
1  
@zengr: Yup, will do. – Jon Skeet Dec 26 '11 at 10:23
show 1 more comment

In "Javascript 1.7" (Mozilla's extension to Javascript) one can also declare block-scope variables with let statement:

 var a = 4;
 let (a = 3) {
   alert(a); // 3
 }
 alert(a);   // 4
share|improve this answer
1  
Yeah, but is it safe to use? I mean would I realistically choose this implementation if my code will run in WebKit? – Igor Ganapolsky Dec 28 '10 at 17:39
8  
@Python: No, WebKit doesn't support let. – KennyTM Dec 28 '10 at 18:29
I guess the only valid use for this would be if you knew all the clients would be using a Mozilla browser like for a companies internal system. – GazB Oct 11 '12 at 8:06

Here's an example:

<script>

var globalVariable = 7; //==window.globalVariable

function aGlobal( param ) { //==window.aGlobal(); 
                            //param is only accessible in this function
  var scopedToFunction = {
    //can't be accessed outside of this function

    nested : 3 //accessible by: scopedToFunction.nested
  };

  anotherGlobal = {
    //global because there's no `var`
  }; 

}

</script>

You'll want to investigate closures, and how to use them to make private members.

share|improve this answer

The key, as I understand it, is that Javascript has function level scoping vs the more common C block scoping.

Here is a good article on the subject.

share|improve this answer

Here is another nice link to keep in mind this issue: "Explaining JavaScript scope and closures".

share|improve this answer

This article runs through some tests to show you how some of it works.

How to get the outerHTML of an element using jQuery

It does NOT cover closures however. I love closures, quite useful

share|improve this answer

I found that many people new to JavaScript have trouble understanding that inheritance is available by default in the language and that function scope is the only scope, so far. I provided an extension to a beautifier I wrote at the end of last year called JSPretty. The feature colors function scope in the code and always associates a color to all variables declared in that scope. Closure is visually demonstrated when a variable with a color from one scope is used in a different scope.

Try the feature at:

See a demo at:

View the code at:

Currently the feature offers support for a depth of 16 nested functions, but currently does not color global variables.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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