js如何判断变量的数据类型
2个回答
展开全部
使用typeof关键字, 可以得到数据类型的字符串表示(全部为小写):
var a = 0, b= true, c="text", d = {x: 0}, e=[1,2];
var f = function(){}, h = null, i
if(typeof a === "number") a = a*2;
typeof a; // "number"
typeof b; // "boolean"
typeof c; // "string"
typeof d; // "object"
typeof e; // "object"
typeof f; // "function"
typeof h; // "object"
typeof i; // "undefined"
可以看出对于null, { }, []返回的类型都是"object", 可进一步判断:
var o = {};
if(typeof o === "object"){
if(o === null){
// null
}else if(Array.isArray(o)){
// 数组
}else{
//普通object对象
}
}
一般情况下, 我们不需要全面判断数据类型, 例如往往只要判断是否为xxx数据类型, 用以上方法足够, 但显然上面的方法在判断object对象时有点繁琐, 所以大多数js类库中提供有扩展方法, 这些库一般采用的方法如下:
Object.prototype.toString.call(100); //"[object Number]"
Object.prototype.toString.call('100'); //"[object String]"
Object.prototype.toString.call(undefined); //"[object Undefined]"
Object.prototype.toString.call(true); //"[object Boolean]"
Object.prototype.toString.call(null); //"[object Null]"
Object.prototype.toString.call({}); //"[object Object]"
Object.prototype.toString.call([]); //"[object Array]"
Object.prototype.toString.call(function () { }); //"[object Function]"
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |