是
if(!!object)
{
// do something if object found
}
一种更可靠的方式来查看是否存在任何对象?
if(object)
{
}
是
if(!!object)
{
// do something if object found
}
一种更可靠的方式来查看是否存在任何对象?
if(object)
{
}
检查某些内容是否已定义的最安全方法:
if (typeof thingy !== 'undefined')
if(typeof my_var == 'object'){
}
有很多方法可以检查...
if ( object )
if ( !!object )
if ( object !== undefined )
if ( typeof object !== 'undefined' )
if ( object !== void 0 )
if ( {}.toString.apply( object ).subtr( 0, 7 ) === '[object' )
等等。