Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is

if(!!object)
{
 // do something if object found
}

a much more guarenteed way to see if any object is present?

if(object)
{

}
share|improve this question
possible duplicate of How can I check whether a variable is defined in JavaScript? – Felix Kling May 24 '12 at 14:14

3 Answers

the safest way to check that something is defined:

if (typeof thingy !== 'undefined')
share|improve this answer
1  
why wouldn't !thingy catch this case? – kunj2aan May 24 '12 at 14:20
@kunj2aan Consider the different outcome when dealing with a variable containing the value false or any falsy value. If you can make some assumption about your variable then other methods are fine. For instance, the result of getElementById will often just use if(result) because you know it will never return false or 0. – James Montagne May 24 '12 at 14:35
@kunj2aan !thingy will throw an exception if thingy has not been defined. – jbabey May 24 '12 at 14:49
if(typeof my_var == 'object'){

}
share|improve this answer

There are so many ways to check that...

if ( object )
if ( !!object )
if ( object !== undefined )
if ( typeof object !== 'undefined' )
if ( object !== void 0 )
if ( {}.toString.apply( object ).subtr( 0, 7 ) === '[object' )

Etc.

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.