代碼
不同數(shù)據(jù)類型的 Object.prototype.toString 方法返回值如下
數(shù)值:返回[object Number]沪饺。
字符串:返回[object String]看彼。
布爾值:返回[object Boolean]爱榕。
undefined:返回[object Undefined]。
null:返回[object Null]翰蠢。
數(shù)組:返回[object Array]堤尾。
arguments 對(duì)象:返回[object Arguments]。
函數(shù):返回[object Function]媒殉。
Error 對(duì)象:返回[object Error]担敌。
Date 對(duì)象:返回[object Date]。
RegExp 對(duì)象:返回[object RegExp]廷蓉。
其他對(duì)象:返回[object Object]全封。
Object.prototype.toString.call(2) // "[object Number]"
Object.prototype.toString.call('') // "[object String]"
Object.prototype.toString.call(true) // "[object Boolean]"
Object.prototype.toString.call(undefined) // "[object Undefined]"
Object.prototype.toString.call(null) // "[object Null]"
Object.prototype.toString.call(Math) // "[object Math]"
Object.prototype.toString.call({}) // "[object Object]"
Object.prototype.toString.call([]) // "[object Array]"
利用這個(gè)特性,可以寫出一個(gè)比typeof運(yùn)算符更準(zhǔn)確的類型判斷函數(shù)桃犬。
var type = function (o){
var s = Object.prototype.toString.call(o);
return s.match(/\[object (.*?)\]/)[1].toLowerCase();
};
type({}); // "object"
type([]); // "array"
type(5); // "number"
type(null); // "null"
type(); // "undefined"
type(/abcd/); // "regex"
type(new Date()); // "date"
在上面這個(gè)type函數(shù)的基礎(chǔ)上刹悴,還可以加上專門判斷某種類型數(shù)據(jù)的方法。
var type = function (o){
var s = Object.prototype.toString.call(o);
return s.match(/\[object (.*?)\]/)[1].toLowerCase();
};
['Null',
'Undefined',
'Object',
'Array',
'String',
'Number',
'Boolean',
'Function',
'RegExp'
].forEach(function (t) {
type['is' + t] = function (o) {
return type(o) === t.toLowerCase();
};
});
type.isObject({}) // true
type.isNumber(NaN) // true
type.isRegExp(/abc/) // true