vote up 1 vote down star
1

How do I check if a particular key exists in a Javascript associative array?

If a key doesn't exist and I try to access it, will it return false? Or throw an error?

flag

3 Answers

vote up 8 vote down check

Actually, checking for undefined-ness is not an accurate way of testing whether a key exists. What if the key exists but the value is actually undefined?

var obj = { key: undefined };
obj["key"] != undefined // false, but the key exists!

You should instead use the in operator:

"key" in obj // true, regardless of the actual value

Or, if you want to particularly test for properties of the object instance (and not inherited properties), use hasOwnProperty:

obj.hasOwnProperty("key") // true
link|flag
3  
Having a property with a manually defined value of undefined makes absolutely no sense. It would be an oxymoron really. – joebert Jul 8 at 15:57
1  
I'm convinced that there are use cases for having properties intentionally set to undefined. – Ates Goral Jul 8 at 16:12
vote up 5 vote down

It will return undefined.

var aa = {hello: "world"};
alert( aa["hello"] );      // popup box with "world"
alert( aa["goodbye"] );    // popup boc with "undefined"

undefined is a special constant value. So you can say, e.g.

// note the three equal signs so that null won't be equal to undefined
if( aa["goodbye"] === undefined ) {
    // do something
}

This is probably the best way to check for missing keys. However, as is pointed out in a comment below, it's theoretically possible that you'd want to have the actual value be undefined. I've never needed to do this and can't think of a reason offhand why I'd ever want to, but just for the sake of completeness, you can use the in operator

// this works even if you have {"goodbye": undefined}
if( "goodbye" in aa ) {
    // do something
}
link|flag
Yes. It returns undefined whether it is created as an object or an array. – Nosredna Jul 8 at 13:30
2  
What if the key exists but the value is actually undefined? – Ates Goral Jul 8 at 15:52
2  
You should use === instead of == when comparing to undefined, otherwise null will compare equal to undefined. – Matthew Crumley Jul 8 at 15:56
@Matthew: thanks for the tip; I've edited my response to change == to ===. – Eli Courtwright Jul 8 at 17:36
vote up 0 vote down

Of course there are uses for "undefining" a variable. If your logic hinges on its being defined, then you would create an irreversible condition if undefining were disallowed. That would be like saying a Boolean can start out as False, but once True must remain True.

link|flag

Your Answer

Get an OpenID
or

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