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?

link|improve this question

HTML5 and Sqlite are the exact same... they both use JavaScript. – Oscar Godson Jun 3 '11 at 7:02
feedback

6 Answers

up vote 289 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);
link|improve this answer
wow thanks, very comprehensive. Although i didn't know about the last bit about closure. – lYriCAlsSH Feb 1 '09 at 9:01
13  
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
Considering your remark on 'ranking', i guess i'll start reading more on this sort of thing. But its not as bad as i thought, i understood the logic behind it rather well. Although, about the object properties, if i declare it globally will it be referenced by object.prototype? – lYriCAlsSH Feb 1 '09 at 9:15
3  
dude, awesome examples – sova Jun 17 '11 at 18:18
2  
Wonderful! Even non-JS developers can understand this very clearly. – Romi Halasz Feb 17 at 14:17
show 2 more comments
feedback

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 it's parent scope.

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

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

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.)

link|improve this answer
1  
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
2  
@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
feedback

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
link|improve this answer
Yeah, but is it safe to use? I mean would I realistically choose this implementation if my code will run in WebKit? – Igor G. Dec 28 '10 at 17:39
5  
@Python: No, WebKit doesn't support let. – KennyTM Dec 28 '10 at 18:29
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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