js判断是否为空

// 判断对象是否为null
function isNull(pram)
{


if (typeof(pram) == "undefined" || pram == null)
{
return false;
}
return true
};

你可能感兴趣的:(js判断是否为空)