show/hide this revision's text 2 changed to a correct answer

Remove

The second var-declaration is interfering with the "var" first. You are actually referring to make it a globalthe as-of-yet-undeclared local x. However, to quote javascript guru Douglas Crockford:

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.

http://www.jslint.com/lint.html

So the recommendation is to avoid using global variables as much as possible.

show/hide this revision's text 1

Remove the "var" to make it a global. However, to quote javascript guru Douglas Crockford:

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.

http://www.jslint.com/lint.html