search
HomeWeb Front-endJS TutorialA closer look at null in JavaScript
A closer look at null in JavaScriptNov 10, 2020 pm 05:45 PM
javascriptnull

A closer look at null in JavaScript

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 value null refers to an object whose value is not set. It is one of the basic types of JS and is considered falsy 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 === null 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 valueoperator 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

我使用双等相等运算符检查变量是否为nullundefined:

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'

nullundefined在某种程度上是等价的,但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!

Statement
This article is reproduced at:segmentfault. If there is any infringement, please contact admin@php.cn delete
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

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

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

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

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

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

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

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

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

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

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

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

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

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

20+道必知必会的Vue面试题(附答案解析)20+道必知必会的Vue面试题(附答案解析)Apr 06, 2021 am 09:41 AM

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

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

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

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor