JavaScript -基础- 函数与对象
Posted xibuhaohao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript -基础- 函数与对象相关的知识,希望对你有一定的参考价值。
一、typeof与判断对象类型instanceof
1、typeof
typeof只能判断基础数据类型,无法判断引用数据类型
<script>
var s="hello"
var i=8;
alert(typeof(s)) //输出string
alert(typeof(i)) //输出number
var s2=new String("hello2")
alert(typeof(s2)) //输出为object,但是不知是那种object
</script>
2、instanceof
instanceof
以上是关于JavaScript -基础- 函数与对象的主要内容,如果未能解决你的问题,请参考以下文章