面试题:JavaScript中undefined 和 null 有什么区别?

2024年05月20日 建站教程

一道面试题,在JavaScript中中undefinednull 有什么区别?​下面web建站小编给大家简单介绍一下!

undefined 和 null 的区别:

1、意义不同:undefined 表示变量已经声明,但是没有值;null 表示空。

2、数据类型不同:typeof undefined = undefined,但是typeof null=object。

3、转换结果不同:undefined 转数值为 NaN,null 转数值为 0。

4、产生的场景不同:变量被声明了但没有赋值,就等于 undefined;函数没有返回值默认返回 undefined;对象没有赋值的属性,该属性的值为 undefined;null 作为函数的参数,表示该函数的参数不是对象;null 作为对象原型链的终点。

总的来说,undefined 和 null 在 JavaScript 中具有不同的含义和用途。undefined 表示变量未定义,而 null 表示一个空对象。

本文链接:http://so.lmcjl.com/news/4961/

展开阅读全文