1.typeof只能判断基本类型数据, 例子: typeof 1 // "number" typeof ‘1‘ // "string" typeof true // "boolean" typeof {} // "object" typeof [] // "object" typeof function (){} // "function" typeof undefined // "undefined" type
typeof 1 // "number" typeof ‘1‘ // "string" typeof true // "boolean" typeof {} // "object" typeof [] // "object" typeof function(){} // "function" typeof undefined // "undefined" typeof null // "object",注意!!!
2.instanceof let obj = new Object() obj instanceof Object // true 注意:instanceof左侧必须是对象,如果不是直接返回false, 例如:
let num = 1 num instanceof Number // false num = new Number(1) num instanceof Number // true
3.最好的类型判断方法:Object.prototype.toString.call(需要判断的值)
console.log(Object.prototype.toString.call(Object) === "[object Object]"); console.log(Object.prototype.toString.call("jerry"));//[object String] console.log(Object.prototype.toString.call(12));//[object Number] console.log(Object.prototype.toString.call(true));//[object Boolean] console.log(Object.prototype.toString.call(undefined));//[object Undefined] console.log(Object.prototype.toString.call(null));//[object Null] console.log(Object.prototype.toString.call({name: "jerry"}));//[object Object] console.log(Object.prototype.toString.call(function(){}));//[object Function] console.log(Object.prototype.toString.call([]));//[object Array] console.log(Object.prototype.toString.call(new Date));//[object Date] console.log(Object.prototype.toString.call(/\d/));//[object RegExp] function Person(){}; console.log(Object.prototype.toString.call(new Person));//[object Object]
为什么这样就能区分呢? toString方法返回反映这个对象的字符串。 那为什么不直接用obj.toString()呢?
console.log("jerry".toString());//jerry console.log((1).toString());//1 console.log([1,2].toString());//1,2 console.log(new Date().toString());//Wed Dec 21 2016 20:35:48 GMT+0800 (中国标准时间) console.log(function(){}.toString());//function (){} console.log(null.toString());//报错 console.log(undefined.toString());//报错
同样是检测对象obj调用toString方法,obj.toString()的结果和Object.prototype.toString.call(obj)的结果不一样,这是为什么? 这是因为toString为Object的原型方法,而Array ,function等类型作为Object的实例,都重写了toString方法。 不同的对象类型调用toString方法时,根据原型链的知识,调用的是对应的重写之后的toString方法(function类型返回内容为函数体的字符串,Array类型返回元素组成的字符串.....),而不会去调用Object上原型toString方法(返回对象的具体类型),所以采用obj.toString()不能得到其对象类型,只能将obj转换为字符串类型;因此,在想要得到对象的具体类型时,应该调用Object上原型toString方法。 验证方法:将数组的toString方法删除
var arr=[1,2,3]; console.log(Array.prototype.hasOwnProperty("toString"));//true console.log(arr.toString());//1,2,3 delete Array.prototype.toString;//delete操作符可以删除实例属性 console.log(Array.prototype.hasOwnProperty("toString"));//false console.log(arr.toString());//"[object Array]"
删除了Array的toString方法后,同样再采用arr.toString()方法调用时,不再有屏蔽Object原型方法的实例方法,因此沿着原型链,arr最后调用了Object的toString方法,返回了和Object.prototype.toString.call(arr)相同的结果。 封装: 1.原理:截取[object type]------slice(8,-1)从第下标8开始截取,到下标倒数第一个 2.封装成一个函数: //返回传递给他的任意对象的类 function isClass(o){ return Object.prototype.toString.call(o).slice(8,-1); } 3.使用:
参考:
https://www.cnblogs.com/youhong/p/6209054.html
https://www.cnblogs.com/Yance/p/7655320.html