Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Leer Destructuring and Spread | Section
Oefenen
Projecten
Quizzen & Uitdagingen
Quizzen
Uitdagingen
/
JavaScript Essentials for Backend

bookDestructuring and Spread

Veeg om het menu te tonen

Destructuring allows you to extract values from objects and arrays into variables.

const user = {
  name: "John",
  age: 25
};

const { name, age } = user;

Now you can use name and age directly instead of accessing them through the object.

You can also use destructuring with arrays:

const numbers = [10, 20];

const [first, second] = numbers;

The spread operator (...) is used to copy or merge data.

const user = { name: "John" };

const updatedUser = {
  ...user,
  age: 25
};

This creates a new object with all existing data plus new values.

Destructuring and spread are commonly used when working with data, especially in backend code where objects are passed and modified frequently.

question mark

What will this code output?

Selecteer het correcte antwoord

Was alles duidelijk?

Hoe kunnen we het verbeteren?

Bedankt voor je feedback!

Sectie 1. Hoofdstuk 10

Vraag AI

expand

Vraag AI

ChatGPT

Vraag wat u wilt of probeer een van de voorgestelde vragen om onze chat te starten.

Sectie 1. Hoofdstuk 10
some-alt