typeof()和instanceof()用法区别

Posted

tags:

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

typeof()和instanceof()用法区别:

  两者都是用来判断数据类型的

    typeof()是能用来判断是不是属于五大类型Boolean,Number,String,Null,Undefined的,是比较宏观的判断;

    instanceof()判断数据类型相对typeof()来说更深入,能判断更具体的,比如Array,object,Boolean,Number,Strin等。

 

      

 

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

js中typeof和instanceof用法区别

typeof()和instanceof()用法区别

javascript typeof 和 instanceof 的区别和联系

typeof()和instanceof的用法区别

javascript typeof 和 instanceof 的区别和联系

js中typeof和instanceof用法区别