tags:

views:

434

answers:

3

If you attempt to use a variable that does not exist and has not been declared, javascript will throw an error. var name is not defined, and the script will stop then and there.

But if you check it using typeof noname then it will return "undefined". I always thought that you had to declare a var for it to have a type. Either by using: var a; so it has the type of undefined or by giving it a value like: var b =5; so it has the type of its value.

Also what is the difference between var a; and var b = undefined;?

+1  A: 

I believe it's a difference between JavaScript definition and firebugs of the same thing.

Undefined is just the state of something that has not been defined as a value. So it has no type.

Also what is the difference between var a; and var b = undefined;

var a; alert(a); // undefined
a; alert(a); // "Error "a" not defined"
a = undefined; alert(a); // undefined

2nd example is not valid JavaScript code and the execution will stop. Since this is an error.

Ólafur Waage
I thought that undefined it's self was also a type? i.e a primitive type. According to the dictionary one of the definitions of undefined is: "to give form or meaning to", To me undefined is like saying it has not meaning. But if it does not exist in the first place then how can it have no meaning. How can you classify what does not exist? Thank you for the help and anyone else.
+4  A: 

An undeclared variable (that is, one that doesn't exist) does not have a type - and so its type is undefined. I believe that the generally accepted way to test if something is undefined is

typeof var === 'undefined'

rather than

var === undefined

since if the variable does not exist, you cannot access it. The latter case might be more useful if you are sure the variable should exist, since the difference between the two is that an undeclared variable will return false in the first case but cause an error in the second case.

Make sure that you use the triple-equals operator though if you're using the second variant; the (more usual) double-equals operator performs type coercion, so null == undefined is true while null === undefined is false. Sometimes you might want the first behaviour, though often you'll want the second, especially if you're testing against undefined, so it's important to recognise the difference. (This is another benefit of the first case since it's not possible to make this subtle error).

Yes, variables can have a value of undefined and you can explicitly assign values to them. Assigning undefined to a variable though is probably confusing, since it's a bit of a paradox (you've defined the variable as undefined) and it's not possible to distinguish that variable from either variables that don't exist or uninitialised variables. Use null if you want to signify that a variable has no value currently, or if you want to "undeclare" the variable altogether, use delete {varname}. Assigning undefined to a variable does not remove that variable's declaration; and it will still appear in the list of its owning object's properties if you iterate over them, so I can't think of any situation this would benefit you.

Edit: In response to the comment, when comparing the values with === (or ==), the variable must be deferenced to obtain its current value in order to do the comparison. Since the variable doesn't exist, this dereferencing fails (no real surprises so far). While you might expect the typeof operator to work in a similar way (get the current value, see what its type is) it specifically works with undefined variables. The "short version" (as used by the Mozilla reference ) is simply that "The typeof operator returns a string indicating the type of the unevaluated operand."

The long version, extracted from the ECMAScript spec, is that there's a special case for undefined variables:

11.4.3 typeof UnaryExpression is evaluated as follows:

  1. Evaluate UnaryExpression (as per 10.1.4 this returns "a value of type Reference whose base object is null and whose property name is the identifier" if the variable is undeclared).
  2. If Type(Result(1)) is not Reference, go to step 4. (It is a Reference)
  3. If GetBase(Result(1)) is null, return "undefined". (This is the special case matching undefined variables)

As for your comment to the first question, "how can you classify what does not exist" - it's easy! Simply divide all concepts into things that do exist (e.g. squirrel, rock) and those that don't exist (unicorns, warp drives). That's what undefined means; regardless of its semantics in English, its Javascript meaning is that the variable hasn't been declared or populated yet, and so while the concept of "a variable called foo" is valid, there exists no variable with that name holding a real value.

Andrzej Doyle
Question why doesn't typeof noname choke like var === undefined?Am i not accessing the var then?also made an interesting comment above to the previous post, but I think it's relent to this one too.Thankyou
+1  A: 

JavaScript discerns between several different types of missing or empty variables (or properties):

  • variables that don't exist, ie its name is unbound in the current lexical environment

In this case, accessing the variable will throw an error, whereas typeof will return 'undefined'.

  • existing variables which have not been assigned a value or which have been explicitly set to undefined

Accessing such a variable will return undefined, typeof will return 'undefined'.

  • existing variables which have been explicitly set to null

Accessing such a variable will return null, typeof will return 'object'.

The latter is actually misleading: null is not an object, but a primitive value of type Null. This has the consequence that you can't return null from constructor functions but have to throw an error instead.

I'd recommend the following practices:

  • use typeof to check for undefined, as it will cover the first two cases
  • don't assign undefined to variables: use delete to get rid of them instead
  • use null to mark the absence of a meaningful value, eg as the forward reference of the last node of a linked list
Christoph