function isEmptyObject (obj) {
if (!obj) {
return true
}
for (const prop in obj) {
if (obj.hasOwnProperty(prop)) {
return false
}
}
return true
}
function isEmptyObject (obj) {
if (!obj) {
return true
}
for (const prop in obj) {
if (obj.hasOwnProperty(prop)) {
return false
}
}
return true
}
本文标题:js判断对象为空
本文链接:https://www.haomeiwen.com/subject/xklxmctx.html
网友评论