Destructuring Assignment
· 3 min read
The concept
The destructuring assignment syntax is a JavaScript expression that makes it possible to unpack values from arrays, or properties from objects, into distinct variables. Available from ES6 (2015) onward.
OR
Take values from arrays or properties from objects and set them as local variables.
~ Fireship.io
Examples
With arrays
The bascis
// The basics
const food = ['🥓', '🍕', '🍟', '🍔', '🌮']
const [bacon, , , , taco] = food
console.log(bacon, taco) // 🥓 🌮
Using the spread operator
// Using the spread operator
const food = ['🥓', '🍕', '🍟', '🥬', '🥦']
const [, , , ...noJunkFood] = food
console.log(noJunkFood) // [ '🥬', '🥦' ]
Using a default value
// Using a default value
const food = [undefined, '🍕', '🍟']
const [bacon = '🐖', pizza, fries] = food
console.log(bacon) // 🐖
With objects
The basics
// The basics
const animals = {
snake: '🐍',
monkey: '🐵',
octopus: '🐙',
}
const { octopus } = animals
console.log(octopus) // 🐙
Using the spread operator
// Using the spread operator
const animals = {
snake: '🐍',
monkey: '🐵',
octopus: '🐙',
}
const { ...rest } = animals
console.log(rest) // { snake: '🐍', monkey: '🐵', octopus: '🐙' }
// Overriding a value using the spread operator
const animals = {
snake: '🐍',
monkey: '🐵',
octopus: '🐙',
}
const newAnimals = { ...animals, snake: '🦎' }
console.log(newAnimals) // { snake: '🦎', monkey: '🐵', octopus: '🐙' }
Using a default value
// Using a default value
const animals = {
snake: '🐍',
monkey: '🐵',
octopus: undefined,
}
const { octopus = '🦑' } = animals
console.log(octopus) // 🦑
Renaming property
// Renaming property
const animals = {
snake: '🐍',
monkey: '🐵',
octopus: '