js中如何判断一个对象为空

2024-11-16 16:17:29
推荐回答(1个)
回答1:

function isNull(obj){
return obj === null ? true:false
}