Object.prototype.toString.call(value)
不同數(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]茴恰。
這就是說(shuō)颠焦,Object.prototype.toString可以看出一個(gè)值到底是什么類型。
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"
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
const typeOf = function (obj) {
return Object.prototype.toString.call(obj).slice(8, -1).toLowerCase()
}
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者