typeof, null, 和 undefined

Posted Think In Code

tags:

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

typeof 操作符

可以用于检测变量的数据类型

Null

javascript 中 null 表示 "什么都没有"。

null是一个只有一个值的特殊类型。表示一个空对象引用。

可以设置为 null 来清空对象:

Undefined

在 JavaScript 中, undefined 是一个没有设置值的变量。

typeof 一个没有值的变量会返回 undefined

 

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

JavaScript-Runoob:JavaScript typeof, null, undefined

JavaScript typeof, null, 和 undefined

JavaScript typeof, null, 和 undefined

使用 typeof 来检测对象是否undefined

typeof与instanceof比较+undefined与null各种值的相互比较

怎样理解undefined和 null