js null 和 undefined

Posted 多多明明

tags:

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

undefined是一个特殊类型,null本质上是一个对象

typeof undefined
//"undefined"
typeof null
//"object"

什么情况会得到undefined?
(1)声明变量但没赋值。
(2) 函数的形参没传时,形参是。
(3)对象中没赋值的属性。
(4)函数没有返回值时,返回undefined

对象原型链的终点是null

Object.getPrototypeOf(Object.prototype)

// null








以上是关于js null 和 undefined的主要内容,如果未能解决你的问题,请参考以下文章

js中undefined和null的区别

JS 中判断空值 undefined 和 null

JS中undefined和null的区别?什么时候应该赋值null?

js 如何用js判断null值

js 中null 和 undifined

JS基础_Null和Undefind