JavaScript对象判空

!exp && typeof(exp)!=”undefined” && exp!=0

var exp = null;
if (!exp && typeof(exp)!="undefined" && exp!=0)
{
    alert("is null");
}

你可能感兴趣的:(javascript)