javascript的原始类型(primitive type)之间的关系。
Posted _林冲
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript的原始类型(primitive type)之间的关系。相关的知识,希望对你有一定的参考价值。
1:有5种primitive type,分别是Undefined、Null、Boolean、Number 和 String。
2:
3:alert(null == undefined);结果为true
原因:undefined值是通过null派生出来的,==时它会自动转化为null,所以返回true。不过如果用严格比较符===,不发生转化,将返回false。
以上是关于javascript的原始类型(primitive type)之间的关系。的主要内容,如果未能解决你的问题,请参考以下文章
type argument cannot be of primitive type错误