Detailed explanation of destructuring assignment syntax in Javascript

Detailed explanation of destructuring assignment syntax in Javascript

Preface

The "destructuring assignment syntax" first introduced in ES6 allows values ​​from arrays and objects to be inserted into different variables. Although it may look difficult, it is actually very easy to learn and use.

Destructuring assignment syntax is a JS expression. ES6 allows you to extract values ​​from arrays and objects and assign values ​​to variables according to a certain pattern, which is called destructuring. Through destructuring assignment, properties/values ​​can be taken out of objects/arrays and assigned to other variables.

Before the emergence of ES6 destructuring assignment, when we needed to assign a value to a variable, we could only specify the value directly.

for example:

let a = 1;
let b = 2;
let c = 3;
let d = 4;
let e = 5;

Array destructuring is very simple. All you have to do is declare a variable for each value in the array. You can define fewer variables, instead of indices in the array (i.e. if you only want to process the first few values), skip some indices or even use the REST pattern to put all remaining values ​​in a new array.

const nums = [ 3, 6, 9, 12, 15 ];
const [
 k, // k = 3
 l, // l = 6
 , // Skip a value (12)
 ...n // n = [12, 15]
] = nums;

Object Destructuring

Object destructuring is very similar to array destructuring, the main difference is that you can reference each key in the object by name, thus creating a variable with the same name. You can also deconstruct the keys into new variable names, deconstruct only the required keys, and then use the rest mode to deconstruct the remaining keys into a new object.

const obj = { a: 1, b: 2, c: 3, d: 4 };
const {
 a, // a = 1
 c: d, // d = 3
 ...rest // rest = { b: 2, d: 4 }
} = obj;

Nested Destructuring

Nested objects and arrays can be destructured using the same rules. The difference is that you can destructure a nested key or value directly into a variable without having to store the parent object in the variable itself.

const nested = { a: { b: 1, c: 2 }, d: [1, 2]};
const {
 a: {
  b: f, // f = 1
  ...g // g = { c: 2 }
 },
 ...h // h = { d: [1, 2]}
} = nested;

Advanced Deconstruction

Since arrays behave like objects, you can use destructuring assignment syntax to get a specific value from an array by using the index as the key in the object destructuring assignment. This method can also be used to obtain other attributes of the array (such as the length of the array). Finally, you can also define default values ​​for variables in the destructuring process if the destructuring value is undefined.

const arr = [ 5, 'b', 4, 'd', 'e', ​​'f', 2 ];
const {
 6: x, // x = 2
 0: y, // y = 5
 2: z, // z = 4
 length: count, // count = 7
 name = 'array', // name = 'array' (not present in arr)
 ...restData // restData = { '1': 'b', '3': 'd', '4': 'e', ​​'5': 'f' }
} = arr;

Summarize

This is the end of this article about deconstruction assignment syntax in Javascript. For more relevant JS deconstruction assignment syntax content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • A practical guide to JavaScript destructuring assignment
  • JavaScript destructuring assignment detailed explanation
  • Javascript destructuring assignment details
  • 5 common scenarios and examples of JavaScript destructuring assignment
  • Detailed explanation of JS ES6 variable destructuring assignment
  • An article to help you understand JavaScript destructuring assignment

<<:  Detailed steps for yum configuration of nginx reverse proxy

>>:  Detailed explanation of using pt-heartbeat to monitor MySQL replication delay

Recommend

React hooks pros and cons

Table of contents Preface advantage: shortcoming:...

This article will show you the principle of MySQL master-slave synchronization

Table of contents Brief Analysis of MySQL Master-...

Example code for drawing double arrows in CSS common styles

1. Multiple calls to single arrow Once a single a...

Methods and techniques for quickly displaying web page images

1. Use .gifs rather than .jpgs. GIFs are smaller ...

MySQL 1130 exception, unable to log in remotely solution

Table of contents question: 1. Enable remote logi...

5 JavaScript Ways to Flatten Arrays

Table of contents 1. Concept of array flattening ...

Node.js+express message board function implementation example

Table of contents Message Board Required librarie...

IIS7 IIS8 reverse proxy rule writing, installation and configuration method

Purpose: Treat Station A as the secondary directo...

Linux process management tool supervisor installation and configuration tutorial

Environment: CentOS 7 Official documentation: htt...

About the overlap of margin value and vertical margin in CSS

Margin of parallel boxes (overlap of double margi...

Nginx access control and parameter tuning methods

Nginx global variables There are many global vari...

Detailed explanation of CSS animation attribute keyframes

How long has it been since I updated my column? H...

How to reset MySQL root password under Windows

Today I found that WordPress could not connect to...

Docker builds cluster MongoDB implementation steps

Preface Due to the needs of the company's bus...