Javascript中undefined和null是否相等

2025-03-23 07:13:53

1、当我们使用==进行判断时,判断的是undefined和null的值是否相等。

Javascript中undefined和null是否相等

2、而undefined和null的值是一样的,所以返回true。

Javascript中undefined和null是否相等

3、当我们使用===进行判断时,判断的是undefined和null的值和类型是否相等。

Javascript中undefined和null是否相等

4、因为undefined的类型是undefined,null的类型是object,所以返回fasle。

Javascript中undefined和null是否相等
声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢