typeof和instanceof

Posted 张啊咩

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typeof和instanceof相关的知识,希望对你有一定的参考价值。

js用来判断数据类型的方法有2种:typeof和instanceof,一般typeof就够用

1.typeof

typeof ‘123‘ //"string"

typeof一般只能返回如下几个结果:number,boolean,string,undefined,function,object

 

2.instanceof

new Date() instanceof Array //false
new Date() instanceof Date //true

instanceof就是用于判断一个对象是否是哪个类

以上是关于typeof和instanceof的主要内容,如果未能解决你的问题,请参考以下文章

instanceof和typeof运算符的区别详解

javascript typeof 和 instanceof 的区别和联系

typeof和instanceof的区别

tips instanceof运算符和typeof运算符的区别

javascript typeof 和 instanceof 的区别和联系

js中typeof和instanceof用法区别