I thought any variable defined in a function would be local but I can easily access variable 'e' outside of its function.
function change() {
var d = 6;
e = 7;
}
change();
alert(e); //> alerts 7
|
I thought any variable defined in a function would be local but I can easily access variable 'e' outside of its function.
|
||||
|
Because new variables will enter the global scope by default. |
|||||||||||||||||
|
|
Because it was declared without |
|||
|
|
|
Thats because e is global by default, using var make a scope varible. You can read more about this in Javascript Garden Scope and Namespaces |
|||
|
|
|
I am guessing that you are going under this assumption that
Problem with your code is you are using one var, but your second line has no var in front of it. That is pushing that varaible e into the global namespace. Why is it happening? You used a semicolon instead of a comma in the variable declaration.
|
|||
|
|
|
It is surprisingly easy to create global variables, here are some other gotchas I've seen.
|
|||
|
|
var d = 6? Reason why I ask is because of the extra indentation onewhich is typical when defining multiple variables (on multiple lines) in a single var statement. If you replaced the semicolon with a comma,ewould be a local variable. – CD Sanchez Apr 11 '11 at 18:48