JS⾯试题:判断⼀个对象{}是否为空对象的五种⽅法
//判断对象是否为空的⼏种⽅法
let a ={};
let b={cc:1}
//法⼀:将json对象转化为json字符串,再判断该字符串是否为"{}"
jquery框架面试题console.log(JSON.stringify(a)==='{}')//true
console.log(JSON.stringify(b)==='{}')//false
//法⼆:for in 循环判断
let mm=function(obj){
for(let key in obj){
return false;/*能遍历,不为空*/
}
return true;
}
console.log(mm(a));//true
console.log(mm(b));//false
//法三:⽤jquery的isEmptyObject⽅法(事实上是jquery封装的⼀个⽅法,如下,注意依赖jquery)console.log($.isEmptyObject(a));//true
console.log($.isEmptyObject(b));//false
function isEmptyObject(obj){
for(let key in obj){
return false;//返回false,不为空对象
}
return true;//返回true,为空对象
}
//法四:⽤Object对象的getOwnPropertyNames⽅法,获取到对象中的属性名,存到⼀个
// 数组中,返回数组对象,我们可以通过判断数组的length来判断此对象是否为空
let aa = OwnPropertyNames(a);
let bb = OwnPropertyNames(b);
console.log(aa.length ==0);//true
console.log(bb.length ==0);//false
//法五:ES6的Object.keys()⽅法,返回值也是对象中属性名组成的数组
let aaa = Object.keys(a);
console.log(aaa.length ==0);//true
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论