如何判断js中的数据类型?

 我来答
泡泡糖609
2018-01-04 · TA获得超过2.5万个赞
知道小有建树答主
回答量:162
采纳率:100%
帮助的人:2.7万
展开全部

typeof算是最常见的了,使用它会返回一个字符串,适合函数对象和基本类型(js中的基本类型:number、string、boolean、null、undefined、object[对象])的判断。

console.log("测试number:"+typeof 1);  console.log("测试string:"+typeof "str"); 

console.log("测试false:"+typeof false);  console.log("测试null:"+typeof null); 

console.log("测试undefined:"+typeof undefined);  console.log("测试Object:"+typeof new Object());  

console.log("测试Object:"+typeof new Array());  

console.log("看看typeof NaN是啥:"+typeof NaN); 

console.log("我想看看数组[1,2,3]类型:"+typeof [1,2,3]);  

console.log("看看function是啥:"+typeof function(){});

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式