JavaScript中有基本数据类型和引用数据类型两大数据类型,基本数据类型有string、number、Boolean、null、undefined、symbol。引用数据类型有Object、Function、Array、Date、RegExp 。这些数据类型又是如何判断的呢?本文介绍js判断数据类型的三种方法:1、使用typeof ;2、使用instanceof;3、使用toString。
第一种:使用typeof
返回一个表示数据类型的字符串,返回结果包括:number、boolean、string、object、undefined、function等6种数据类型。
alert(typeof"helloworld")------------------>"string" alert(typeof123)------------------>"number" alert(typeof[1,2,3])------------------>"object" alert(typeofnewFunction())------------------>"function" alert(typeofnewDate())------------------>"object" alert(typeofnewRegExp())------------------>"object" alert(typeofSymbol())------------------>"symbol" alert(typeoftrue)------------------>"true" alert(typeofnull)------------------>"object" alert(typeofundefined)------------------>"undefined" alert(typeof'undefined')------------------>"string"
第二种:使用instanceof
判断对象和构造函数在原型链上是否有关系,如果有关系,返回真,否则返回假。
[]instanceofArray;//true {}instanceofObject;//true newDate()instanceofDate;//true
第三种:使用toString
是Object原型对象上的一个方法,该方法默认返回其调用者的具体类型,基本上所有对象的类型都可以通过这个方法获取到。
Object.prototype.toString.call('');//[objectString] Object.prototype.toString.call(100);//[objectNumber] Object.prototype.toString.call([]);//[objectArray] Object.prototype.toString.call(newRegExp());//[objectRegExp]原文来自:https://www.py.cn
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容