使用Object.prototype上的原生toString()方法判断数据类型,使用方法以下:正则表达式
1.判断基本类型:数组
Object.prototype.toString.call(null);//”[object Null]” Object.prototype.toString.call(undefined);//”[object Undefined]” Object.prototype.toString.call(“abc”);//”[object String]” Object.prototype.toString.call(123);//”[object Number]” Object.prototype.toString.call(true);//”[object Boolean]”
2.判断原生引用类型:函数
Function fn(){console.log(“test”);} Object.prototype.toString.call(fn);//”[object Function]”
var date = new Date(); Object.prototype.toString.call(date);//”[object Date]”
var arr = [1,2,3]; Object.prototype.toString.call(arr);//”[object Array]”
var reg = /[hbc]at/gi; Object.prototype.toString.call(arr);//”[object Array]”
function Person(name, age) { this.name = name; this.age = age; } var person = new Person("Rose", 18); Object.prototype.toString.call(arr); //”[object Object]”
console.log(person instanceof Person);//输出结果为true
3.判断原生JSON对象:this
var isNativeJSON = window.JSON && Object.prototype.toString.call(JSON); console.log(isNativeJSON);//输出结果为”[object JSON]”说明JSON是原生的,不然不是;
注意:Object.prototype.toString()自己是容许被修改的,而咱们目前所讨论的关于Object.prototype.toString()这个方法的应用都是假设toString()方法未被修改成前提的。prototype