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

which is the right thing to do?

if (myObj['key'] == undefined)

or

if (myObj['key'] == null)

or

if (myObj['key'])

Exact duplicate of: How do I check to see if an object has an attribute in Javascript?

share|improve this question

marked as duplicate by annakata, Greg, AnthonyWJones, Tomalak Jan 18 '09 at 16:03

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 70 down vote accepted

Try the javascript in operator.

if('key' in myObj)
share|improve this answer
2  
This isn't the best way - see the other discussion linked above. – reconbot Sep 2 '11 at 13:54

hasOwnProperty

share|improve this answer
TypeOneError, thanks, but is this supported in IE, safari? It looks like it is not supporteD? – kevin Jan 18 '09 at 16:00