Weird behavior in referring to global variable. Is this a bug in javascript? Surely it isn't! - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T04:32:14Zhttp://stackoverflow.com/feeds/question/585725http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/585725/weird-behavior-in-referring-to-global-variable-is-this-a-bug-in-javascript-sure2Weird behavior in referring to global variable. Is this a bug in javascript? Surely it isn't! Chandan .2009-02-25T12:06:15Z2009-02-25T12:24:59Z
<p>Consider the following piece of code. </p>
<pre><code><html>
<body>
<script>
var x = 5; //globally declared
function showX()
{
alert("x="+x); //trying to display global value
var x=10; //trying to create and initialize a local x
}
</script>
<input type = "button" value="Show X" onclick="showX()">
</body>
</html>
</code></pre>
<p>The alert statement shows 'x=undefined'. And doesn't print the global value of x as expected. An equivalent java code would display 5! So, is it a bug? If not then how does one explain that behavior?</p>
http://stackoverflow.com/questions/585725/weird-behavior-in-referring-to-global-variable-is-this-a-bug-in-javascript-sure/585739#5857391Answer by Jon Skeet for Weird behavior in referring to global variable. Is this a bug in javascript? Surely it isn't! Jon Skeet2009-02-25T12:10:46Z2009-02-25T12:16:16Z<p>The scope of <code>x</code> is the <strike>block</strike> function in which it is declared... although I believe scope in JavaScript can be a bit tricky sometimes. In C# this would be a compile-time error - it would be trying to use the local variable before its declaration.</p>
<p>Whatever the reason, I'd try to avoid doing it simply for the sake of readability.</p>
http://stackoverflow.com/questions/585725/weird-behavior-in-referring-to-global-variable-is-this-a-bug-in-javascript-sure/585742#5857423Answer by Magnar for Weird behavior in referring to global variable. Is this a bug in javascript? Surely it isn't! Magnar2009-02-25T12:11:38Z2009-02-25T12:17:46Z<p>The second var-declaration is interfering with the first. You are actually referring to the as-of-yet-undeclared local x. However, to quote javascript guru Douglas Crockford:</p>
<blockquote>
<p>JavaScript's biggest problem is its
dependence on global variables,
particularly implied global variables.
If a variable is not explicitly
declared (usually with the var
statement), then JavaScript assumes
that the variable was global. This can
mask misspelled names and other
problems.</p>
</blockquote>
<p><a href="http://www.jslint.com/lint.html" rel="nofollow">http://www.jslint.com/lint.html</a></p>
<p>So the recommendation is to avoid using global variables as much as possible.</p>
http://stackoverflow.com/questions/585725/weird-behavior-in-referring-to-global-variable-is-this-a-bug-in-javascript-sure/585751#5857513Answer by Greg for Weird behavior in referring to global variable. Is this a bug in javascript? Surely it isn't! Greg2009-02-25T12:14:44Z2009-02-25T12:14:44Z<p>The <a href="http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf" rel="nofollow">ECMAScript Specification</a> says in section 12.2:</p>
<blockquote>
<p>If the variable statement occurs
inside a FunctionDeclaration, the
variables are defined with
function-local scope in that function,
as described in s10.1.3. Otherwise,
they are defined with global scope
(that is, they are created as members
of the global object, as described in
10.1.3) using property attributes { DontDelete}. Variables are created
when the execution scope is entered. A
Block does not define a new execution
scope. Only Program and
FunctionDeclaration produce a new
scope. Variables are initialised to
undefined when created. A variable
with an Initialiser is assigned the
value of its AssignmentExpression when
the VariableStatement is executed, not
when the variable is created.</p>
</blockquote>
<p>So it's not a bug - the local variable is created when the function is entered.</p>
http://stackoverflow.com/questions/585725/weird-behavior-in-referring-to-global-variable-is-this-a-bug-in-javascript-sure/585783#5857830Answer by david for Weird behavior in referring to global variable. Is this a bug in javascript? Surely it isn't! david 2009-02-25T12:24:59Z2009-02-25T12:24:59Z<p>I changed "var x" to "x". It is working now.</p>
<pre><code><html>
<body>
<script language="javascript">
var x = 5; //globally declaredfunction
function showX() {
alert("x="+x); //trying to display global value
/*var */ x=10; //trying to create and initialize a local x
}
</script>
<input type = "button" value="Show X" onclick="showX()" />
</body>
</html>
</code></pre>