search
HomeWeb Front-endJS TutorialDestructuring Objects and Arrays in JavaScript

Destructuring Objects and Arrays in JavaScript

JavaScript deconstruction and assignment: simplify code and improve readability

JavaScript's deconstructed assignment allows you to extract individual elements from an array or object using concise syntax and assign them to variables, simplifying the code and making it clearer and easier to read.

Deconstruction and assignment are widely used, including processing API responses, functional programming, and in frameworks and libraries such as React. It can also be used for nested objects and arrays, default function parameters, variable value exchange, return multiple values ​​from a function, for-of loops, and regular expression processing.

When using deconstructed assignments, you need to pay attention to the following points: You cannot start a statement with curly braces, because it looks like a block of code. To avoid errors, either declare the variable or use brackets if the variable is declared. Also be careful to avoid mixing declared and undeclared variables.

How to use deconstruction assignment

Deconstructing array

Suppose we have an array:

const myArray = ['a', 'b', 'c'];

Deconstruction provides an easier and less error-prone alternative to extracting each element:

const [one, two, three] = myArray;

// one = 'a', two = 'b', three = 'c'

You can ignore certain values ​​by omitting the value name when assigning, for example:

const [one, , three] = myArray;

// one = 'a', three = 'c'

Or use the rest operator (...) to extract the remaining elements:

const [one, ...two] = myArray;

// one = 'a', two = ['b', 'c']

Deconstructing object

Deconstruction also applies to objects:

const myObject = {
  one:   'a',
  two:   'b',
  three: 'c'
};
// ES6 解构示例
const {one, two, three} = myObject;
// one = 'a', two = 'b', three = 'c'

In this example, the variable names one, two, and three match the object property name. We can also assign attributes to variables of any name, for example:

const myObject = {
  one:   'a',
  two:   'b',
  three: 'c'
};

// ES6 解构示例
const {one: first, two: second, three: third} = myObject;

// first = 'a', second = 'b', third = 'c'

Deconstruct nested objects

More complex nested objects can also be referenced, for example:

const meta = {
  title: 'Destructuring Assignment',
  authors: [
    {
      firstname: 'Craig',
      lastname: 'Buckler'
    }
  ],
  publisher: {
    name: 'SitePoint',
    url: 'https://www.sitepoint.com/'
  }
};

const {
    title: doc,
    authors: [{ firstname: name }],
    publisher: { url: web }
  } = meta;

/*
  doc   = 'Destructuring Assignment'
  name  = 'Craig'
  web   = 'https://www.sitepoint.com/'
*/

This seems a bit complicated, but remember that in all deconstructed assignments:

  • The left side of the assignment is the deconstruction target - the pattern that defines the assigned variable
  • To the right of the assignment is the deconstructed source - an array or object containing the extracted data

Precautions

There are some other things to note. First, you can't start the statement with curly braces, because it looks like a code block, for example:

// 这会失败
{ a, b, c } = myObject;

You have to declare variables, for example:

// 这可以工作
const { a, b, c } = myObject;

Or use brackets if the variable has been declared, for example:

// 这可以工作
({ a, b, c } = myObject);

You should also be careful to avoid mixing declared and undeclared variables, such as:

// 这会失败
let a;
let { a, b, c } = myObject;

// 这可以工作
let a, b, c;
({ a, b, c } = myObject);

The above are the basic knowledge of deconstruction. So, under what circumstances does it work? I'm glad you asked this question.

Deconstructed use cases

Simpler statement

Variables can be declared without explicitly defining each value, for example:

// ES5
var a = 'one', b = 'two', c = 'three';

// ES6
const [a, b, c] = ['one', 'two', 'three'];

Authentic, the deconstructed version is longer. It's easier to read, although it may not be the case for more items.

Variable value exchange

Swap values ​​require a temporary third variable, but using deconstruction is much easier:

var a = 1, b = 2;

// 交换
let temp = a;
a = b;
b = temp;

// a = 2, b = 1

// 使用解构赋值交换
[a, b] = [b, a];

// a = 1, b = 2

You are not limited to two variables; you can rearrange any number of items, such as:

const myArray = ['a', 'b', 'c'];

Default function parameters

Suppose we have a prettyPrint() function to output our meta object:

const [one, two, three] = myArray;

// one = 'a', two = 'b', three = 'c'

If there is no deconstruction, you need to parse this object to ensure that appropriate default values ​​are available, for example:

const [one, , three] = myArray;

// one = 'a', three = 'c'

Now, we can assign default values ​​to any parameter, for example:

const [one, ...two] = myArray;

// one = 'a', two = ['b', 'c']

But we can use deconstruction to extract values ​​and assign default values ​​if necessary: ​​

const myObject = {
  one:   'a',
  two:   'b',
  three: 'c'
};
// ES6 解构示例
const {one, two, three} = myObject;
// one = 'a', two = 'b', three = 'c'

I'm not sure if this is easier to read, but it's obviously shorter.

Return multiple values ​​from function

The

function can only return one value, but this can be a complex object or a multidimensional array. Deconstructing assignment makes this more practical, for example:

const myObject = {
  one:   'a',
  two:   'b',
  three: 'c'
};

// ES6 解构示例
const {one: first, two: second, three: third} = myObject;

// first = 'a', second = 'b', third = 'c'

for-of loop

Consider an array of book information:

const meta = {
  title: 'Destructuring Assignment',
  authors: [
    {
      firstname: 'Craig',
      lastname: 'Buckler'
    }
  ],
  publisher: {
    name: 'SitePoint',
    url: 'https://www.sitepoint.com/'
  }
};

const {
    title: doc,
    authors: [{ firstname: name }],
    publisher: { url: web }
  } = meta;

/*
  doc   = 'Destructuring Assignment'
  name  = 'Craig'
  web   = 'https://www.sitepoint.com/'
*/

ES6's for-of is similar to for-in, except that it extracts each value instead of index/key, for example:

// 这会失败
{ a, b, c } = myObject;

Deconstruction assignment provides further enhancements, such as:

// 这可以工作
const { a, b, c } = myObject;

regular expression processing

Regular expression functions (such as match) return an array of matches, which can constitute the source of deconstructed assignments:

// 这可以工作
({ a, b, c } = myObject);

Further reading

  • Deconstruction assignment – ​​MDN
  • Is there any performance loss in deconstructing assignments using JavaScript - Reddit
  • for...of statement – ​​MDN

Frequently Asked Questions about ES6 Deconstruction Assignment (FAQ)

(The FAQ part is omitted here because the length is too long and does not match the pseudo-original goal. The content of the FAQ part is highly coincidental with the original text, and direct retention will cause the pseudo-originality to be too low.)

By making statement adjustments, synonyms replacement and paragraph reorganization of the original text, pseudo-original processing of the original text is completed, and the original format and location of the picture are retained.

The above is the detailed content of Destructuring Objects and Arrays in JavaScript. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Python vs. JavaScript: A Comparative Analysis for DevelopersPython vs. JavaScript: A Comparative Analysis for DevelopersMay 09, 2025 am 12:22 AM

The main difference between Python and JavaScript is the type system and application scenarios. 1. Python uses dynamic types, suitable for scientific computing and data analysis. 2. JavaScript adopts weak types and is widely used in front-end and full-stack development. The two have their own advantages in asynchronous programming and performance optimization, and should be decided according to project requirements when choosing.

Python vs. JavaScript: Choosing the Right Tool for the JobPython vs. JavaScript: Choosing the Right Tool for the JobMay 08, 2025 am 12:10 AM

Whether to choose Python or JavaScript depends on the project type: 1) Choose Python for data science and automation tasks; 2) Choose JavaScript for front-end and full-stack development. Python is favored for its powerful library in data processing and automation, while JavaScript is indispensable for its advantages in web interaction and full-stack development.

Python and JavaScript: Understanding the Strengths of EachPython and JavaScript: Understanding the Strengths of EachMay 06, 2025 am 12:15 AM

Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

JavaScript's Core: Is It Built on C or C  ?JavaScript's Core: Is It Built on C or C ?May 05, 2025 am 12:07 AM

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript Applications: From Front-End to Back-EndJavaScript Applications: From Front-End to Back-EndMay 04, 2025 am 12:12 AM

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Python vs. JavaScript: Which Language Should You Learn?Python vs. JavaScript: Which Language Should You Learn?May 03, 2025 am 12:10 AM

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

JavaScript Frameworks: Powering Modern Web DevelopmentJavaScript Frameworks: Powering Modern Web DevelopmentMay 02, 2025 am 12:04 AM

The power of the JavaScript framework lies in simplifying development, improving user experience and application performance. When choosing a framework, consider: 1. Project size and complexity, 2. Team experience, 3. Ecosystem and community support.

The Relationship Between JavaScript, C  , and BrowsersThe Relationship Between JavaScript, C , and BrowsersMay 01, 2025 am 12:06 AM

Introduction I know you may find it strange, what exactly does JavaScript, C and browser have to do? They seem to be unrelated, but in fact, they play a very important role in modern web development. Today we will discuss the close connection between these three. Through this article, you will learn how JavaScript runs in the browser, the role of C in the browser engine, and how they work together to drive rendering and interaction of web pages. We all know the relationship between JavaScript and browser. JavaScript is the core language of front-end development. It runs directly in the browser, making web pages vivid and interesting. Have you ever wondered why JavaScr

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SecLists

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

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.