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?

link|improve this question
feedback

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

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 23 down vote accepted

Try the javascript in operator.

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

hasOwnProperty

link|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
feedback