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?
|
|
|
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.
|
|||||||||||||||||||||
|
|
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. |
|||||
|
|
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 |
|||||||||||||||||||||
|
|
In "Javascript 1.7" (Mozilla's extension to Javascript) one can also declare block-scope variables with
|
|||||||||||
|
|
Here's an example:
You'll want to investigate closures, and how to use them to make private members. |
|||
|
|
|
The key, as I understand it, is that Javascript has function level scoping vs the more common C block scoping. |
|||
|
|
|
Here is another nice link to keep in mind this issue: "Explaining JavaScript scope and closures". |
||||
|
|
|
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 |
||||
|
|
|
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. |
|||
|
|

