What's the best way of checking if an object property in JavaScript is undefined?

Sorry, I initially said variable rather than object property. I believe the same == undefined approach doesn't work there.

link|improve this question

72% accept rate
12  
o.prop === undefined is the way to go, or typeof(o.prop) == 'undefined' if there is a risk somebody might define a variable by the name undefined. There is a lot of confusion in the answers. Note that o.prop == undefined will give true if o.prop is defined with the value null. – clacke Jul 30 '10 at 8:58
1  
This question is a candidate for merging a duplicate question. Would it be possible to mark as the accepted answer the one that is actually correct? – Robert Harvey Aug 2 '10 at 18:15
1  
A more complete answer is here: stackoverflow.com/questions/3390396/… – makerofthings7 Nov 2 '10 at 22:11
Note that if the property is not set at all on the object, then typeof(o.prop) == 'undefined' is still true. To distinguish this case, you need to check 'prop' in o. – Dave Feb 19 at 9:34
feedback

16 Answers

up vote 385 down vote accepted

Use:

if (typeof something === "undefined") 
   alert("something is undefined");
link|improve this answer
1  
What happens if something is null? Usually you want to check if something if either null or undefined. – Cristian Vrabie May 16 at 14:19
feedback

I believe there are a number of incorrect answers to this topic. Contrary to common belief "undefined" is NOT a keyword in javascript, and can in fact have a value assigned to it.

// Degenerate code. DO NOT USE.
var undefined = false;  // Shockingly, this is completely legal!
if(myVar === undefined) {
 alert("You have been mislead. Run away!");
}

Additionally, myVar === undefined will raise an error in the situation where myVar is undeclared.

The most robust way to perform this test is:

if(typeof myVar === "undefined")

This will always return the correct result, and even handles the situation where myVar is not declared.

link|improve this answer
2  
+1 for noting that myVar === undefined will raise an error if myVar was not declared – Enrique Dec 19 '11 at 18:27
1  
yes - the QUOTES are apparently vital. my guess is that the typeof function returns a string (of expected format) – jsh Mar 22 at 19:02
feedback

In JavaScript there is null and there is undefined. They have different meanings.

  • undefined means that the variable value has not been defined; it is not known what the value is.
  • null means that the variable value is defined and set to null (has no value).

Marijn Haverbeke states, in his free, online book "Eloquent JavaScript" (emphasis mine):

There is also a similar value, null, whose meaning is 'this value is defined, but it does not have a value'. The difference in meaning between undefined and null is mostly academic, and usually not very interesting. In practical programs, it is often necessary to check whether something 'has a value'. In these cases, the expression something == undefined may be used, because, even though they are not exactly the same value, null == undefined will produce true.

So, I guess the best way to check if something was undefined would be:

if (something == undefined)

Hope this helps!

Edit: In response to your edit, object properties should work the same way.

var person = {
    name: "John",
    age: 28,
    sex: "male"
};

alert(person.name); // "John"
alert(person.fakeVariable); // undefined
link|improve this answer
12  
if (something == undefined) is better written as if (something === undefined) – Sebastian Rittau Nov 30 '09 at 9:47
7  
Saying "undefined means that the variable has not been defined; it does not exist" (2nd line) is plain wrong. When a variable is not defined and you try to know its value, javascript throws a "is not defined" exception. undefined means that the variable value has not been defined. So the variable value is unknown ; it is not known if the variable has a value and what it is. And null means that the variable value, which is defined, is null. So the variable has no value ; it is known that the variable doesn't have a value. – Alsciende Apr 1 '10 at 10:18
18  
It should be pointed out that this is not entirely safe. undefined is just a variable that can be re-assigned by the user: writing undefined = 'a'; will cause your code to no longer do what you think it does. Using typeof is better and also works for variables (not just properties) that haven't been declared. – Gabe Moothart Apr 14 '10 at 15:18
2  
if something is an undefined global variable, (something == undefined) brings up javascript error. – Morgan Cheng Apr 21 '10 at 3:04
1  
The problem with this is that if var a = null then a == undefined evaluates to true, even though a is most certainly defined. – Andrew May 19 '11 at 18:50
show 3 more comments
feedback
if ( typeof( something ) == "undefined") 

This worked for me while the others didn't.

link|improve this answer
8  
parens are unnecessary since typeof is an operator – aehlke Aug 10 '10 at 11:22
feedback

I'm not sure where the origin of using === with typeof came from, and as a convention I see it used in many libraries, but the typeof operator returns a string literal, and we know that up front, so why would you also want to type check it too?

typeof x;                      // some string literal "string", "object", "undefined"
if (typeof x === "string") {   // === is redundant because we already know typeof returns a string literal
if (typeof x == "string") {    // sufficient
link|improve this answer
Great point Eric. Is there a performance hit from checking type also? – Simon Jun 29 '11 at 7:16
@Simon: quite the contrary - one could expect slight performance hit from avoiding coercion in '===' case. Quick and dirty test has shown '===' is 5% faster than '==' under FF5.0.1 – Antony Hatchkins Dec 18 '11 at 8:24
2  
More thorough test has shown that under FF,IE and Chrome '==' is more or less faster than '===' (5-10%) and Opera doesn't make any difference at all: jsperf.com/triple-equals-vs-twice-equals/6 – Antony Hatchkins Dec 18 '11 at 9:55
feedback

It's better to use the strict equality operator:

if (variable === undefined) {
   alert('not defined');
}

x == undefined also checks whether x is null, while strict equality does not (if that matters).(source)

Or you can simply do this:

if (!variable) {
   alert('not defined');
}

Here you check if there's any value that can make the variable look false (undefined, null, 0, false, ...). Not a good method for integers ('0' is not false), but might do well for object properties.

link|improve this answer
7  
shouldn't it be if (!variable) {alert ('not defined');} ? – Nathan Feger Oct 26 '09 at 21:30
7  
Checking for a truly undefined variable this way will cause an error to be thrown. It will work if the variable was set explicitly to undefined, but if the variable was never set, it's necessary to use typeof as @Erwin pointed out. – Ben Apr 6 '10 at 16:52
4  
@Ben is right. I don't know how this got voted up so much. This is really bad code. – aehlke Aug 10 '10 at 11:20
feedback

Though that I'd throw in that its sometimes worth asking if checking for undefined is really what you want to do:

I've just been refactoring a bunch of code that was using this kind of construct (incorrectly).

There was a bunch of checks whether an object had a given property.

if( typeof blob.x != 'undefined' ) {  fn(blob.x); }

Which can be more clearly written without a check for undefined.

if( "x" in blob ) { fn(blob.x); }
link|improve this answer
4  
Hi Michael. Great suggestion, and I think it does make things cleaner. One gotcha that I found, however, is when using the ! operator with "in". You have to say if (!("x" in blob)) {} with brackets around the in, because the ! operator has precedence over 'in'. Hope that helps someone. – Simon Jun 15 '11 at 0:28
Sorry Michael, but this is incorrect, or at least misleading, in light of the original question. 'in' is not a sufficient way to test whether an object property has typeof undefined. For proof, please see this fiddle: jsfiddle.net/CsLKJ/4 – Tex Feb 25 at 12:04
feedback

The solution is incorrect. In javascript,

null == undefined

will return true because they both are "casted" to a boolean and are false. The correct way would be to check

if (something === undefined)

which is the identity operator...

link|improve this answer
1  
To be clear, === is type equality + (primitive equality | object identity), where primitives include strings. I think most people consider 'abab'.slice(0,2) === 'abab'.slice(2) unintuitive if one considers === as the identity operator. – clacke Jul 30 '10 at 8:49
Wrong. This throws an error if the variable has not been created. Should not be voted up. Use typeof instead. – Simon Jun 15 '11 at 0:22
feedback

if you do:

if(myvar == undefined )
 { alert('var does not exists or is not initialized'); }

It will fail when the var myvar does not exists because myvar is not defined, so the script is broken and the test has no effect.

Because the window object has a global scope (default object) outside a function, a declaration will be 'attached' to the window object.

for example:

var myvar = 'test';

the global var myvar is the same as window.myvar or window['myvar']

To avoid errors to test when a global variable exists, you better use:

if(window.myvar == undefined )
 { alert('var does not exists or is not initialized'); }

The question if a var really exists doesn't matter, it's value is incorrect, that is the only thing that counts. Otherwise, it is silly to initialize variables with undefined, better use the value false to initialize. When you know that all variables that you declare are initialized with false, you can simply check it's type or rely on !window.myvar to check if it has a proper/valid value. So even when the variable is not defined then !window.myvar is the same for myvar=undefined or myvar=false or myvar=0.

When you expect a specific type, test the type of the variable. To speed up testing a condition you better do:

if( !window.myvar || typeof window.myvar != 'string' )
 { alert('var does not exists or is not type of string'); }

When the first and simple condition is true, the interpreter skips next tests.

It is always better to use the instance/object of the variable to check if it got a valid value. It is more stable, a better way of programming.

Cheers!

Kind regards, Erwin Haantjes

link|improve this answer
feedback
function isUnset(inp) {
  return (typeof inp === 'undefined')
}

Returns false if variable is set, and true if is undefined.

Then use:

if (isUnset(var)) {
  // initialize variable here
}
link|improve this answer
3  
The !! is not necessary. === returns a boolean value. – clacke Jul 30 '10 at 8:27
You're absolutely correct. >.> – Rixius Jul 30 '10 at 8:35
Submitted corrections to code, based on comments above. Thanks clacke. – Simon Jun 15 '11 at 0:36
feedback

You can get array all undefined with path using following code.

 function getAllUndefined(object) {

        function convertPath(arr, key) {
            var path = "";
            for (var i = 1; i < arr.length; i++) {

                path += arr[i] + "->";
            }
            path += key;
            return path;
        }


        var stack = [];
        var saveUndefined= [];
        function getUndefiend(obj, key) {

            var t = typeof obj;
            switch (t) {
                case "object":
                    if (t === null) {
                        return false;
                    }
                    break;
                case "string":
                case "number":
                case "boolean":
                case "null":
                    return false;
                default:
                    return true;
            }
            stack.push(key);
            for (k in obj) {
                if (obj.hasOwnProperty(k)) {
                    v = getUndefiend(obj[k], k);
                    if (v) {
                        saveUndefined.push(convertPath(stack, k));
                    }
                }
            }
            stack.pop();

        }

        getUndefiend({
            "": object
        }, "");
        return saveUndefined;     
    }

jsFiddle link

link|improve this answer
feedback

Object.hasOwnProperty(o, 'propertyname');

This doesn't look up through the prototype chain, however.

link|improve this answer
No it is not. Example: paste.pocoo.org/show/554497 – Corey Richardson Feb 21 at 15:29
feedback

These threw exceptions for me The following code will work for variables which are not created inside a function

var mygroup=null;

function isdefined( variable)
{
    return (typeof(window[variable]) == "undefined")?  false: true;
}
window.onload=function()
{
   alert(isdefined('mygroup'));
}

But However using try and catch was the only solution which returned zero exceptions at all places.

link|improve this answer
feedback

Please try the following example it works for me and it is as per w3schools standard

var t1;
if (t1 == undefined) {
   alert('not defined');
}
link|improve this answer
6  
"and it is as per w3schools standard" --- actually w3schools is a commercial website about web technologies, and has nothing to do with w3c the standards organization. – foljs Mar 25 '11 at 1:21
1  
pwned imo... 6 chars – Shawn Apr 25 '11 at 23:46
2  
The only problem is that it throws an error if you haven't done a var t1 which is sometimes what you're attempting to check. Bad code, don't use it. – Simon Jun 15 '11 at 0:33
Yes, bad code. Also w3wchool is not a good starting point to start with. Many developers agree with me that's a fact. – Erwinus Feb 23 at 23:02
feedback
if (somevariable == undefined) {
  alert('the variable is not defined!');
}

You can also make it into a function, as shown here:

function isset(varname){
  return(typeof(window[varname]) != 'undefined');
}
link|improve this answer
5  
First, when somevariable equals undefined, it doesn't mean the variable is undefined - it's just the value that is undefined. When the variable is undefined, then this code will throw an error. Second, this isset function will only work for global variables. – Rene Saarsoo Jan 26 '10 at 23:09
1  
Use === over == – trinithis Aug 2 '10 at 18:40
feedback

I've tested with undefined but is not recognized on object as standard command (i probably wrong same case sensitive), as said Ricky undefined = null. I've tested with null and finally work:

document.getElementById("objectname") === null

I've used it to check(uncheck) unknown number of checkboxes without test all objects in the page.

link|improve this answer
feedback

protected by Starx Apr 25 at 8:45

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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