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