Recommended tutorial: "JavaScript Video Tutorial"
JavaScript has 2 types: basic type (string
, booleans
number
, symbol
) and objects.
Objects are complex data structures. The simplest objects in JS are ordinary objects: a set of keys and associated values:
let myObject = { name: '前端小智' }
But in some cases, objects cannot be created. In this case, JS provides a special value null
— indicating that the object is missing.
let myObject = null
In this article, we will learn everything about null in JavaScript: what it means, how to detect it, the difference between null
and undefined
And why using null
makes code maintenance difficult.
1. The concept of null
The JS specification explains information about null
:
The valuenull
refers to an object whose value is not set. It is one of the basic types of JS and is consideredfalsy
in Boolean operations.
For example, the function greetObject()
creates an object, but it can also return null
when the object cannot be created:
function greetObject(who) { if (!who) { return null; } return { message: `Hello, ${who}!` }; } greetObject('Eric'); // => { message: 'Hello, Eric!' } greetObject(); // => null
However, if When the function greetObject()
is called with parameters, the function returns null
. Returning null
is reasonable because the who
parameter has no value.
2. How to check for null
A good way to check for a null
value is to use the strict equality operator:
const missingObject = null; const existingObject = { message: 'Hello!' }; missingObject === null; // => true existingObject === null; // => false
missingObject === null
results in true
because the missingObject
variable contains a null
value.
If the variable contains a non-null value (such as an object), the expression existObject === nul
l evaluates to false
.
2.1 null is a virtual value
null
and false
, 0
, ''
, undefined
, NaN
are all imaginary values. If a false value is encountered in a conditional statement, JS will force the false value to false
.
Boolean(null); // => false if (null) { console.log('null is truthy') } else { console.log('null is falsy') }
2.2 typeof null
typeof value
operator determines the type of value. For example, typeof 15 is 'number'
, and the calculation result of typeof {prop: 'Value'}
is 'object'
.
Interestingly, what is the result of type null
typeof null; // => 'object'
Why is 'object'
, typoef null
is object
is a bug in early JS implementations.
To detect null
values, use the typeof
operator. As mentioned before, use the strict equality operator myVar === null
.
If we want to use the typeof
operator to check if a variable is an object, we also need to exclude the null
value:
function isObject(object) { return typeof object === 'object' && object !== null; } isObject({ prop: 'Value' }); // => true isObject(15); // => false isObject(null); // => false
3. The trap of null
null
often appears unexpectedly when we think the variable is an object. Then, if you extract the property from null
, JS will throw an error.
Use the greetObject()
function again and try to access the message
property from the returned object:
let who = ''; greetObject(who).message; // throws "TypeError: greetObject() is null"
because who
The variable is an empty string, so the function returns null
. When accessing the message
property from null
, a TypeError
error is raised.
Can be handled by using optional chaining with null mergingnull
:
let who = '' greetObject(who)?.message ?? 'Hello, Stranger!' // => 'Hello, Stranger!'
4. Alternatives to null
When the object cannot be constructed, our usual approach is to return null
, but this approach has shortcomings. When null
appears in the execution stack, a check must be performed.
Try to avoid returning null
:
- return the default object instead of
null
- throwing an error Instead of returning
null
, return to the greetObject()
function that originally returned the greeting
object. When parameters are missing, you can return a default object instead of returning null
:
function greetObject(who) { if (!who) { who = 'Stranger'; } return { message: `Hello, ${who}!` }; } greetObject('Eric'); // => { message: 'Hello, Eric!' } greetObject(); // => { message: 'Hello, Stranger!' }
or throw an error:
function greetObject(who) { if (!who) { throw new Error('"who" argument is missing'); } return { message: `Hello, ${who}!` }; } greetObject('Eric'); // => { message: 'Hello, Eric!' } greetObject(); // => throws an error
These two approaches can avoid using null
.
5. null
vs undefined
undefined
is the value of an uninitialized variable or object property, and undefined
is the value of an uninitialized variable or object property. The main difference between
let myVariable; myVariable; // => undefined
null
and undefined
is that null
represents a missing object while undefined
represents Uninitialized state.
Strict equality operator operator===
Distinguish between null
and undefined
:
null === undefined // => false
And double equality operator==
is considered to be equal to null
and undefined
null == undefined // => true
我使用双等相等运算符检查变量是否为null
或undefined
:
function isEmpty(value) { return value == null; } isEmpty(42); // => false isEmpty({ prop: 'Value' }); // => false isEmpty(null); // => true isEmpty(undefined); // => true
6. 总结
null
是JavaScript中的一个特殊值,表示丢失的对象,严格相等运算符确定变量是否为空:variable === null
。
typoef
运算符对于确定变量的类型(number
, string
, boolean
)很有用。 但是,如果为null
,则typeof会产生误导:typeof null
的值为'object'
。
null
和undefined
在某种程度上是等价的,但null
表示缺少对象,而undefined
未初始化状态。
更多编程相关知识,请访问:编程视频课程!!
The above is the detailed content of A closer look at null in JavaScript. For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

本篇文章整理了20+Vue面试题分享给大家,同时附上答案解析。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 Linux new version
SublimeText3 Linux latest version

Notepad++7.3.1
Easy-to-use and free code editor
