如何区分null和undefined

Posted daaasheng

tags:

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

null和undefined是两种数据类型, 如果硬要区分的话。

null是一种类型, 赋值变量为null型。

未定义的变量, 即为undefined。

var a = null
a  // null
var b
b  // undefined
typeof(b)  // "undefined"

标准解释

6.1.1 The Undefined Type
The Undefined type has exactly one value, called undefined. Any variable that has not been assigned a value has the value undefined.

6.1.2 The Null Type
The Null type has exactly one value, called null.

undefined使用场景:

  • 判断变量, 判断函数传参异常, 判断对象字段和方法是否存在(或者正确使用Object.propretype.call(ob, ‘key‘))
  • es6中应对eslint规范的export default undefined

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

JavaScript - undefined与null的区分及最佳实践

scss Sass:伪`undefined`值来区分`null`。 #sass

null和undefined小记

深入理解javascript之null和undefined

如何区分js数据类型

null和undefined的区别