标签:typeof ber code 判断 == instance type prototype number
Object.prototype.toString.call(obj) === ‘[object Object]‘
上面那个比较精准,其实也可以用这个,因为一般传进来的数据不是对象就是数组,极少可能是函数,所以下面也实用的
obj instanceof Object && typeof obj.length !== ‘number‘
标签:typeof ber code 判断 == instance type prototype number
原文地址:https://www.cnblogs.com/antyhouse/p/13256295.html