js 判断是否为空对象、空数组

原文 https://www.jianshu.com/p/cadcbab793d7
function isEmpty(a){
if (a === "") return true; //检验空字符串
if (a === "null") return true; //检验字符串类型的null
if (a === "undefined") return true; //检验字符串类型的 undefined
if (!a && a !== 0 && a !=="") return true; //检验 undefined 和 null
if (Object.prototype.toString.call(a)=='[object Array]' && a.length === 0 ) return true; //检验空数组
if (Object.prototype.toString.call(a)=='[object Object]' && Object.keys(a).length === 0 ) return true; //检验空对象
return false;
}

instanceof constructor isPrototypeOf局限性:
instanceof 和constructor 判断的变量,必须在当前页面声明的,比如,一个页面(父页面)有一个框架,框架中引用了一个页面(子页面),在子页面中声明了一个ary,并将其赋值给父页面的一个变量,这时判断该变量,Array == object.constructor;会返回false;
原因:
1、array属于引用型数据,在传递过程中,仅仅是引用地址的传递。
2、每个页面的Array原生对象所引用的地址是不一样的,在子页面声明的array,所对应的构造函数,是子页面的Array对象;父页面来进行判断,使用的Array并不等于子页面的Array;切记,不然很难跟踪问题!

你可能感兴趣的:(js 判断是否为空对象、空数组)