Is "var" optional?
myObj = 1;
same as ?
var myObj = 1;
I found they both work from my test, I assume var is optional?
|
Is "var" optional?
same as ?
I found they both work from my test, I assume var is optional? |
||||
|
They mean different things.
If you use This is, in my opinion, one of the most dangerous issues with javascript, and should be deprecated, or at least raise warnings over warnings. The reason is, it's easy to forget |
|||||||||||||||||||||
|
|
Nope, they are not equivalent. With The latter declaration create a variable local to the scope you are using. Try the following code to understand the differences:
The second function alters the value of the global variable "external", but the first function doesn't. |
|||||
|
|
This is one of the tricky parts of Javascript, but also one of its core features. A variable declared with
With regards to scope, it is not true that variables automatically become global. Rather, Javascript will traverse up the scope chain to see if you have used the variable before. If it finds an instance of a variable of the same name used before, it'll use that and whatever scope it was declared in. If it doesn't encounter the variable anywhere it'll eventually hit the global object (
This behavior is really powerful when used with nested functions and callbacks. Learning about what |
|||||||||
|
|
There's a bit more to it than just local vs global. Global variables created with
Based on the answers so far, these global variables,
This is why you should always use |
||||
|
|
|
|||||
|
|
The var keyword in Javascript is there for a purpose. If you declare a variable without the var keyword, like this:
It becomes a global variable that can be accessed from any part of your script. If you did not do it intentionally or are not aware of it, it can cause you pain if you re-use the variable name at another place in your javascript. If you declare the variable with the var keyword, like this:
It is local to the scope ({] - braces, function, file, depending on where you placed it). This a safer way to treat variables. So unless you are doing it on purpose try to declare variable with the var keyword and not without. |
|||
|
|
|
Undeclared variable (without Variables declared with |
|||||||
|
|
Consider this question asked at StackOverflow today: A good test and a practical example is what happens in the above scenario... What's the problem with the code? What's the solution? |
||||
|
|
|
There's so much confusion around this subject, and none of the existing answers cover everything clearly and directly. Here are some examples with comments inline.
A declaration sets a DontDelete flag. An assignment does not. A declaration ties that variable to the current scope. A variable assigned but not declared will look for a scope to attach itself to. That means it will traverse up the food-chain of scope until a variable with the same name is found. If none is found, it will be attached to the top-level scope (which is commonly referred to as global).
For a very clear description of what is happening, this analysis of the delete function covers variable instantiation and assignment extensively. |
||||
|
|
varis optional in the sense that an assignment statement can be successfully interpreted with or without it, but not optional in the case where you want to explicitly declare a variable in local scope. – RedFilter Mar 21 '10 at 1:25