Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the most appropriate way to test if a variable is undefined in JavaScript? I've seen several possible ways:

if (window.myVariable) 

Or

if (typeof(myVariable) != "undefined")

Or

if (myVariable) //this throws an error if undefined, should this be in Try/Catch?
share|improve this question
Do you want to check for only undefined, or null as well? – Nick Craver Jun 6 '10 at 20:26
2  
check this stackoverflow.com/questions/27509/… – Amr Badawy Aug 2 '10 at 17:59
3  
@Robert - that question has an accepted answer that answers here have proven to be wrong – Daniel Schaffer Aug 2 '10 at 18:09
3  
Maybe vote to close the other question as a dupe of this one? :) – Daniel Schaffer Aug 2 '10 at 18:11

12 Answers

up vote 190 down vote accepted

If you are interested in finding out whether a variable has been declared regardless of its value, then using the in operator is the safest way to go. Consider this example.

// global scope
var theFu; // theFu has been declared, but its value is undefined
typeof theFu; // "undefined"

But this may not be the intended result for some cases, since the variable or property was declared but just not initialized. Use the in operator for a more robust check.

"theFu" in window; // true
"theFoo" in window; // false

If you are interested in knowing whether the variable hasn't been declared or has the value undefined, then use the typeof operator.

if(typeof myVar != 'undefined')

The typeof operator is guaranteed to return a string. Direct comparisons against undefined are troublesome as undefined can be overwritten.

window.undefined = "omg";
"omg" == undefined // true

As @CMS pointed out, this has been patched in ECMAScript 5th ed., and undefined is non-writable.

if(window.myVar) will also include these falsy values, so it's not very robust:

false
0
""
NaN
null
undefined

Thanks to @CMS for pointing out that your third case - if (myVariable) can also throw an error in two cases. The first is when the variable hasn't been defined which throws a ReferenceError.

// abc was never declared.
if(abc) {} // ReferenceError: abc is not defined

The other case is when the variable has been defined, but has a getter function which throws an error when invoked. For example,

// or it's a property that can throw an error
Object.defineProperty(window, "myVariable", { 
    get: function() { throw new Error("W00t?"); }, 
    set: undefined 
});
if(myVariable) {} // Error: W00t?
share|improve this answer
9  
This ; +1. Any other solution is bound of fail at some point in time. :-) – sasuke Aug 2 '10 at 18:00
1  
+1, great point about window.undefined ... learned something new! – Daniel Schaffer Aug 2 '10 at 18:02
3  
@Anurag, the third case will throw a ReferenceError if myVariable is not declared... – CMS Aug 2 '10 at 18:12
1  
Comparing against a string ('undefined') sucks for minification though. What I like to do is create my own (guaranteed to be) undefined in an appropriate scope. Like in this pattern: (function myScope(global, undefined) { /* do your checks against your own sacred undefined in this scope */ })(this); I think for ex. jQuery (gasp!!!) has done this for a while. – npup Aug 2 '10 at 18:24
2  
Can "typeof" be redefined? – makerofthings7 Aug 2 '10 at 19:09
show 11 more comments

I personally use

myVar === undefined

Warning: Please note that === is used over ==!

<rant> I do not buy the argument that undefined can be redefined. Sure it's true, but it's BS in my book to use that as an argument because just about ANYTHING in Javascript can be overwritten. You might as well not write any code at all because you "don't know what it does". How do I know Object, String, parseInt, etc. all are what they are? I don't, but there are assumptions one has to make. undefined is no different. </rant>

share|improve this answer
9  
It's marginally more likely that undefined could be redefined, just because people do use it for such checks. Some people habitually put the constant on the left-hand side when doing such checks: if (undefined == someVariable). It only takes a typo for this to silently redefine undefined: if (undefined = someVariable). – Tim Down Aug 2 '10 at 20:16
1  
I never write code that has undefined on the LHS. Even if I did, the fact that I use === instead of == makes the typo extremely unlikely. But the fact that == is incorrect is more of a worry. In any case, a bug like that is usually easy to find. Kind of like this bug: typeof x == "undefned". – Thomas Eding Dec 1 '11 at 16:20
== is not necessarily incorrect: it would be correct if the intention was to match null and undefined. However, I do agree that writing code like that is a pretty terrible idea. – Tim Down Dec 1 '11 at 16:44

If it is undefined, it will not be equal to a string that contains the characters "undefined", as the string is not undefined.

You can check the type of the variable:

if (typeof(something) != "undefined") ...

Sometimes you don't even have to check the type. If the value of the variable can't evaluate to false when it's set (for example if it's a function), then you can just evalue the variable. Example:

if (something) {
  something(param);
}
share|improve this answer
1  
No need for the parentheses: typeof is an operator, not a function. – Tim Down Jun 6 '10 at 20:23
1  
@Tim - It can be used both ways. – Nick Craver Jun 6 '10 at 20:24
@Tim: @Nick is correct. See developer.mozilla.org/en/Core_Javascript_1.5_Reference/… – Mathias Bynens Jun 6 '10 at 20:30
5  
Yes, I know that it works with the parentheses, which is because the parentheses here form the grouping operator that simply evaluates and returns the operand inside. I merely said that they were unnecessary. – Tim Down Jun 6 '10 at 21:21
Why the downvote? If you don't explain what you think is wrong, it can't improve the answer. – Guffa Nov 2 '12 at 8:32
show 2 more comments
if (typeof foo == 'undefined') {
 // Do something
};

Note that strict comparison (!==) is not necessary in this case, since typeof will always return a string.

share|improve this answer
What's with the semi-colon (};)? – James Jun 6 '10 at 21:05
@J-P: The semicolon after the closing brace is just an empty statement. – Gumbo Jun 6 '10 at 21:26
@Gumbo, sorry, what I meant to ask was: "What purpose is the semi-colon serving?" – James Jun 6 '10 at 21:51
@J-P That’s just a personal preference. I like to add optional semicolons — the if block can be seen/rewritten as one line of code, and then it makes sense to append the semicolon, because that’s how I end pretty much every other statement. if (typeof foo == 'undefined') { }; Also, this ensures compatibility with some JavaScript minifiers. I’m aware JSLint advises against this, but I just don’t see the point — these semicolons are harmless and if anything, enforce a slightly stricter coding style. – Mathias Bynens Jun 7 '10 at 9:33
I've not encountered a minifier that can't handle if(){} without a ; ... Which minifiers are you referring to? You say that this is how you end every other statement... I guess that's true. But, a block statement {} is already a statement in and of its own. Adding a ; makes it two statements, technically. Syntactically, it's redundant. Even automatic semi-colon insertion won't add a semi-colon there... – James Jun 7 '10 at 12:39
show 1 more comment

Using typeof is the best way. It will work when the variable has never been declared, unlike any comparison with the == or === operators or type coercion using if. (undefined, unlike null, may also be redefined, making it unreliable for comparison).

if (typeof someUndeclaredVariable == "undefined") {
    // Works
}

if (someUndeclaredVariable === undefined) { 
    // Throws an error
}
share|improve this answer
1  
Why would you ever test undefinedness against a variable that is undeclared anyway? The only real use I have ever had for testing undefinedness has been against function arguments, which are declared. You can always look at your source code to discover undeclared variables in any case... without a runtime check ZOMG@!!! – Thomas Eding Aug 2 '10 at 19:42
1  
You might want to check if a particular global variable representing a piece of functionality has already been defined. For example, library code may wish to check that the library has not already previously been included. – Tim Down Aug 2 '10 at 20:20
1  
right.. forgot about those – Thomas Eding Aug 2 '10 at 21:12

Yes: you're comparing against a string rather than the undefined property of the global object. Instead, do

if (something !== undefined) {
   ...
}

... or even better:

if (typeof something != "undefined") {
    ...
}
share|improve this answer
You have to assign the undefined property globally before the first solution works, haven't you? (At least in Firefox I can't find a default one set; Chrome has window.undefined set to "undefined") – Marcel Korpel Jun 6 '10 at 20:53
Marcel: undefined is specified in the ECMAScript 3 spec as a property of the global object, so is by definition global. This is implemented in all major browsers, including Firefox (the last one not to implement it was IE 5). As a property of the global object rather than a literal (as null is), undefined can be redefined, which is what makes the second solution superior. – Tim Down Jun 6 '10 at 21:26
Just tested this using console.log, you're right. It just doesn't appear in Firebug as property of window. – Marcel Korpel Jun 6 '10 at 22:17
2  
As a property of the global object, it has the DontEnum attribute, meaning it won't show up in for...in loops (which is what I'd imagine Firebug uses). Its existence can be shown by the expression "undefined" in window, which returns true. – Tim Down Jun 6 '10 at 22:36

You need to use typeof.

if(typeof something != "undefined")

share|improve this answer
1  
Or just something !== undefined, assuming you've already done var undefined, pre-cautiously. – James Jun 6 '10 at 20:25
1  
Good to see you added the quotes now. However, as mentioned in my answer, note that strict comparison (!==) is not necessary in this case, since typeof will always return a string. – Mathias Bynens Jun 6 '10 at 20:27
Mathias: using strict or non-strict comparison here is a matter of personal taste. Both will always work, and neither is more correct. It could depend on whether your default position is to always use strict comparison unless specifically requiring type coercion (as recommended by Crockford, for example) or whether you prefer to use non-strict comparison except when strictness is required. – Tim Down Jun 6 '10 at 21:39

Some scenarios illustrating the results of the various answers: http://jsfiddle.net/drzaus/UVjM4/

(Note that the use of var for in tests make a difference when in a scoped wrapper)

Code for reference:

(function(undefined) {
    var definedButNotInitialized;
    definedAndInitialized = 3;
    someObject = {
        firstProp: "1"
        , secondProp: false
        // , undefinedProp not defined
    }
    // var notDefined;

    var tests = [
        'definedButNotInitialized in window',
        'definedAndInitialized in window',
        'someObject.firstProp in window',
        'someObject.secondProp in window',
        'someObject.undefinedProp in window',
        'notDefined in window',

        '"definedButNotInitialized" in window',
        '"definedAndInitialized" in window',
        '"someObject.firstProp" in window',
        '"someObject.secondProp" in window',
        '"someObject.undefinedProp" in window',
        '"notDefined" in window',

        'typeof definedButNotInitialized == "undefined"',
        'typeof definedButNotInitialized === typeof undefined',
        'definedButNotInitialized === undefined',
        '! definedButNotInitialized',
        '!! definedButNotInitialized',

        'typeof definedAndInitialized == "undefined"',
        'typeof definedAndInitialized === typeof undefined',
        'definedAndInitialized === undefined',
        '! definedAndInitialized',
        '!! definedAndInitialized',

        'typeof someObject.firstProp == "undefined"',
        'typeof someObject.firstProp === typeof undefined',
        'someObject.firstProp === undefined',
        '! someObject.firstProp',
        '!! someObject.firstProp',

        'typeof someObject.secondProp == "undefined"',
        'typeof someObject.secondProp === typeof undefined',
        'someObject.secondProp === undefined',
        '! someObject.secondProp',
        '!! someObject.secondProp',

        'typeof someObject.undefinedProp == "undefined"',
        'typeof someObject.undefinedProp === typeof undefined',
        'someObject.undefinedProp === undefined',
        '! someObject.undefinedProp',
        '!! someObject.undefinedProp',

        'typeof notDefined == "undefined"',
        'typeof notDefined === typeof undefined',
        'notDefined === undefined',
        '! notDefined',
        '!! notDefined'
    ];

    var output = document.getElementById('results');
    var result = '';
    for(var t in tests) {
        if( !tests.hasOwnProperty(t) ) continue; // bleh

        try {
            result = eval(tests[t]);
        } catch(ex) {
            result = 'Exception--' + ex;
        }
        console.log(tests[t], result);
        output.innerHTML += "\n" + tests[t] + ": " + result;
    }
})();

And results:

definedButNotInitialized in window: true
definedAndInitialized in window: false
someObject.firstProp in window: false
someObject.secondProp in window: false
someObject.undefinedProp in window: true
notDefined in window: Exception--ReferenceError: notDefined is not defined
"definedButNotInitialized" in window: false
"definedAndInitialized" in window: true
"someObject.firstProp" in window: false
"someObject.secondProp" in window: false
"someObject.undefinedProp" in window: false
"notDefined" in window: false
typeof definedButNotInitialized == "undefined": true
typeof definedButNotInitialized === typeof undefined: true
definedButNotInitialized === undefined: true
! definedButNotInitialized: true
!! definedButNotInitialized: false
typeof definedAndInitialized == "undefined": false
typeof definedAndInitialized === typeof undefined: false
definedAndInitialized === undefined: false
! definedAndInitialized: false
!! definedAndInitialized: true
typeof someObject.firstProp == "undefined": false
typeof someObject.firstProp === typeof undefined: false
someObject.firstProp === undefined: false
! someObject.firstProp: false
!! someObject.firstProp: true
typeof someObject.secondProp == "undefined": false
typeof someObject.secondProp === typeof undefined: false
someObject.secondProp === undefined: false
! someObject.secondProp: true
!! someObject.secondProp: false
typeof someObject.undefinedProp == "undefined": true
typeof someObject.undefinedProp === typeof undefined: true
someObject.undefinedProp === undefined: true
! someObject.undefinedProp: true
!! someObject.undefinedProp: false
typeof notDefined == "undefined": true
typeof notDefined === typeof undefined: true
notDefined === undefined: Exception--ReferenceError: notDefined is not defined
! notDefined: Exception--ReferenceError: notDefined is not defined
!! notDefined: Exception--ReferenceError: notDefined is not defined
share|improve this answer

Since neither of above answer helped me, I sujest doing this, it worked for me in IE8:

if (typeof variable_name.value === 'undefined') {
    // variable_name is undefined
}
share|improve this answer

Provocant question: Why do you want to check if something undefined? Dont try to check every income like java-boys "if (str!=null && str ...)"

Read the "javascript all about types" tutorial from Mathias Reuter

share|improve this answer
If you have declared an optional function parameter then you probably want to check whether it is undefined or not. ie. whether it has been passed in the function call. – w3d Jun 27 '11 at 9:54

I use it as a function parameter and exclude it on function execution that way I get the "real" undefined. Although it does require you to put your code inside a function. I found this while reading the jQuery source.

undefined = 2;

(function (undefined) {
   console.log(undefined); // prints out undefined
   // and for comparison:
   if (undeclaredvar === undefined) console.log("it works!")
})()

Of course you could just use typeof though. But all my code is usually inside a containing function anyways, so using this method probably saves me a few bytes here and there.

share|improve this answer
2  
It will give ReferenceError if the var undeclaredvar is really undeclared. It this is attribute - then it works, example: var undeclaredvar = window.someUndeclaredVar; if (undeclaredvar === undefined) console.log("it works!"). Please test you example before posting. – bartosz.r Nov 29 '11 at 22:18

On the contrary of @Thomas Eding answer:

If i forget to declare myVar in my code, the I'll get myVar is not defined

Let's take a real example:

I've a variable name, but I am not sure if it is declared somewhere or not.

Then @Anurag answer will help.

var myVariableToCheck = 'myVar';
if (window[myVariableToCheck] === undefined) console.log("Not declared Or declared but undefined");
// Or you can check it directly 
if (window['myVar'] === undefined) console.log("Not declared Or declared but undefined");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.