An in-depth analysis of the logical assignment operators in JS
This article will give you an in-depth discussion of JavaScript logical assignment operators. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.
#Logical assignment is an extension to existing mathematical and binary logic operators. Let’s review them first and then see what we get by combining them.
First, let’s take a look at the difference between conditional operator
and unconditional operator
in JS.
Unconditional vs conditional
Mathematical operators such as
are unconditional.
In const x = 1 2
, no matter what, we always add LHS
to RHS
and The result is assigned to x
.
LHS and RHS are concepts in the field of mathematics, meaning the left side of the equation and the right side of the equation. In our current scenario, they are the left side and right side of the assignment operator. When the variable appears on the left side of the assignment operator, an LHS query is performed; otherwise, an RHS query is performed.
We can even write some weird code like const x = false 2
. JS first converts the LHS of false
to Number
, so we get const x = Number (false) 2
, and the result is const x = 0 2
. It adds the LHS to the RHS and finally assigns it to x
, resulting in 2
.
Logical operators such as &&
are conditional
In const x = true && 0 2
, First calculate the LHS, which is true
. Because the value of LHS is true
, we next run the RHS operation, whose value is 2, and also run the assignment operation, and the result is 2
.
Compared to const x = false && 0 2
, the LHS is false
, so the RHS is completely ignored.
You may be wondering why you should avoid calculating the RHS? Two common reasons are to get better performance and to avoid side effects
.
Binary logical operator
##& || ??
We often use&& in JSX and
|| to conditionally render the interface.
?? is the
nullish(null value) coalescing operator, which was recently approved and will be popularized soon. They are all binary logical operators.
- Use
- &&
to test whether the result of LHS is a true value.
Use - ||
to test whether the result of LHS is an imaginary value.
Use - ??
to test whether the LHS is invalid.
Virtual value vs Nullish
What are the virtual values in JS?- null
- undefined
- false
- NaN
- 0
- "" (empty string )
- null
- undefined
Boolean value, but Is the
LHS or
RHS value of the returned expression. To clarify the point of these expression types, it is helpful to revisit this sentence from the ECMAScript documentation:
&&or
||produces values that are not Must be of type Boolean, but one of the values in the two operand expressions.
Some examples// &&
/ /如果 LHS 是真值,计算并返回 RHS,否则返回 LHS
true && 100**2 // 10000
"Joe" && "JavaScript" // "JavaScript"
false && 100**2 // false
"" && 100**2 // ""
NaN && 100**2 // NaN
null && 100**2 // null
undefined && 100**2 // undefined
Copy after login
// && / /如果 LHS 是真值,计算并返回 RHS,否则返回 LHS true && 100**2 // 10000 "Joe" && "JavaScript" // "JavaScript" false && 100**2 // false "" && 100**2 // "" NaN && 100**2 // NaN null && 100**2 // null undefined && 100**2 // undefined
Logical assignment operator
&&= ||= ??=
This operator combines assignment with conditional logical operators, hence the name"logical assignment". They are just abbreviations. For example, x && = y is the abbreviation of
x && (x = y).
Logical AND assignment (&&= )// 逻辑与
LHS &&= RHS
// 等价于
LHS && (LHS = RHS)
// 事例
// if x is truthy, assign x to y, otherwise return x
// 如果 x 为真值,则将 y 赋值给 x, 否则返回 x
let x = 1
const y = 100
x &&= y // x 为 100
// 与上面对应的长的写法
x && (x = y)
Copy after login
// 逻辑与 LHS &&= RHS // 等价于 LHS && (LHS = RHS) // 事例 // if x is truthy, assign x to y, otherwise return x // 如果 x 为真值,则将 y 赋值给 x, 否则返回 x let x = 1 const y = 100 x &&= y // x 为 100 // 与上面对应的长的写法 x && (x = y)
Logical OR assignment (||= )// 逻辑或
LHS ||= RHS
// 等价于
LHS || (LHS = RHS)
// 事例
// 如果 x 为真值,返回 x,否则将 y 赋值给 x
let x = NaN
const y = 100
x ||= y // x 为 100
// 与上面对应的长的写法
x || (x = y)
Copy after login
// 逻辑或 LHS ||= RHS // 等价于 LHS || (LHS = RHS) // 事例 // 如果 x 为真值,返回 x,否则将 y 赋值给 x let x = NaN const y = 100 x ||= y // x 为 100 // 与上面对应的长的写法 x || (x = y)
Logical nullish assignment (??=)// 逻辑 nullish
LHS ??= RHS
// 等价于
LHS ?? (LHS = RHS)
// 事例
// if x.z is nullish, assign x.z to y
let x = {}
let y = 100;
x.z ??= y // x 为 { z: 100 }
// 与上面对应的长的写法
x.z ?? (x.z = y)
Copy after login
// 逻辑 nullish LHS ??= RHS // 等价于 LHS ?? (LHS = RHS) // 事例 // if x.z is nullish, assign x.z to y let x = {} let y = 100; x.z ??= y // x 为 { z: 100 } // 与上面对应的长的写法 x.z ?? (x.z = y)
Example of logical assignment in implementation
JSX in React
let loading = true const spinner = <Spinner /> loading &&= spinner
DOM
el.innerHTML ||= 'some default'
Object
// 如果对象没有 onLoad 方法,则设置一个方法 const config = {}; config.onLoad ??= () => console.log('loaded!')
const myObject = { a: {} } myObject.a ||= 'A'; // 被忽略,因为 myObject 中 a 的值为真值 myObject.b ||= 'B'; // myObject.b 会被创建,因为它不丰 myObject 中 // { // "a": {} // "b": "B" // } myObject.c &&= 'Am I seen?'; // 这里的 myObject.c 为虚值,所以什么都不会做
How to use logical assignment in the project
Chrome already supports logical assignment. For backward compatibility, use transformers. If you are using Babel, please install the plug-in:npm install @babel/plugin-proposal-logical-assignment-operators
.babelrc:
{ "plugins": ["@babel/plugin-proposal-logical-assignment-operators"] }
Original address: https://seifi.org/javascript/javascript-logical-assignment-operators-deep-dive.html
Author: Joe Seifi
Translation address :https://segmentfault.com/a/1190000039923017
For more programming-related knowledge, please visit: Programming Video! !
The above is the detailed content of An in-depth analysis of the logical assignment operators in JS. For more information, please follow other related articles on the PHP Chinese website!

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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

Introduction to the method of obtaining HTTP status code in JavaScript: In front-end development, we often need to deal with the interaction with the back-end interface, and HTTP status code is a very important part of it. Understanding and obtaining HTTP status codes helps us better handle the data returned by the interface. This article will introduce how to use JavaScript to obtain HTTP status codes and provide specific code examples. 1. What is HTTP status code? HTTP status code means that when the browser initiates a request to the server, the service
