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
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)
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)
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)
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-operatorsand add the following content in
.babelrc:
{ "plugins": ["@babel/plugin-proposal-logical-assignment-operators"] }Logical assignment is a new concept, so There is not much relevant knowledge yet. If you have other examples of good usage of logical assignment, please leave a comment below.
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!

Different JavaScript engines have different effects when parsing and executing JavaScript code, because the implementation principles and optimization strategies of each engine differ. 1. Lexical analysis: convert source code into lexical unit. 2. Grammar analysis: Generate an abstract syntax tree. 3. Optimization and compilation: Generate machine code through the JIT compiler. 4. Execute: Run the machine code. V8 engine optimizes through instant compilation and hidden class, SpiderMonkey uses a type inference system, resulting in different performance performance on the same code.

JavaScript's applications in the real world include server-side programming, mobile application development and Internet of Things control: 1. Server-side programming is realized through Node.js, suitable for high concurrent request processing. 2. Mobile application development is carried out through ReactNative and supports cross-platform deployment. 3. Used for IoT device control through Johnny-Five library, suitable for hardware interaction.

I built a functional multi-tenant SaaS application (an EdTech app) with your everyday tech tool and you can do the same. First, what’s a multi-tenant SaaS application? Multi-tenant SaaS applications let you serve multiple customers from a sing

This article demonstrates frontend integration with a backend secured by Permit, building a functional EdTech SaaS application using Next.js. The frontend fetches user permissions to control UI visibility and ensures API requests adhere to role-base

JavaScript is the core language of modern web development and is widely used for its diversity and flexibility. 1) Front-end development: build dynamic web pages and single-page applications through DOM operations and modern frameworks (such as React, Vue.js, Angular). 2) Server-side development: Node.js uses a non-blocking I/O model to handle high concurrency and real-time applications. 3) Mobile and desktop application development: cross-platform development is realized through ReactNative and Electron to improve development efficiency.

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

Python is more suitable for data science and machine learning, while JavaScript is more suitable for front-end and full-stack development. 1. Python is known for its concise syntax and rich library ecosystem, and is suitable for data analysis and web development. 2. JavaScript is the core of front-end development. Node.js supports server-side programming and is suitable for full-stack development.


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

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

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

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

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