如何在JavaScript中判断数据类型?相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
javascript是一种什么语言
javascript是一种动态类型、弱类型的语言,基于对象和事件驱动并具有相对安全性并广泛用于客户端网页开发的脚本语言,同时也是一种广泛用于客户端Web开发的脚本语言。它主要用来给HTML网页添加动态功能,现在JavaScript也可被用于网络服务器,如Node.js。
第一种:使用typeof
返回一个表示数据类型的字符串,返回结果包括:number、boolean、string、object、undefined、function等6种数据类型。
alert(typeof "helloworld") ------------------>"string" alert(typeof 123) ------------------>"number"alert(typeof [1,2,3]) ------------------>"object"alert(typeof new Function()) ------------------>"function"alert(typeof new Date()) ------------------>"object"alert(typeof new RegExp()) ------------------>"object"alert(typeof Symbol()) ------------------>"symbol"alert(typeof true) ------------------>"true"alert(typeof null) ------------------>"object"alert(typeof undefined) ------------------>"undefined"alert(typeof 'undefined') ------------------>"string"
第二种:使用instanceof
判断对象和构造函数在原型链上是否有关系,如果有关系,返回真,否则返回假。
[] instanceof Array; //true{} instanceof Object;//true new Date() instanceof Date;//true
第三种:使用toString
是Object原型对象上的一个方法,该方法默认返回其调用者的具体类型,基本上所有对象的类型都可以通过这个方法获取到。
Object.prototype.toString.call(''); //[object String] Object.prototype.toString.call(100); //[object Number] Object.prototype.toString.call([]); //[object Array] Object.prototype.toString.call(new RegExp()); //[object RegExp]
看完上述内容,你们掌握如何在JavaScript中判断数据类型的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注编程网行业资讯频道,感谢各位的阅读!