Array and Object Destructuring
There are two most used data structures in javascript; array and object. Array and object destructuring is a significant feature in javascript ES6.
Array Destructuring
Usually, to access an item in an array, you would have to access the items via their indexes as shown below.
const animals = ['ð', 'ð', 'ð', 'ðŠ', 'ð'];
console.log(animals[2])
// ð
console.log(animals[4])
// ð
However, you might want to assign the values of an array to separate variables. Destructuring is a clean and simple way of achieving that. With destructuring, there is no need to use indexes or loops.
Now, using destructuring in the example above, we can assign the values of the array to variables as shown in the example below:
const animals = ['ð', 'ð', 'ð', 'ðŠ', 'ð'];
const [sheep, cat, cow, camel, pig] = animals;
console.log(sheep)
// ð
console.log(cat)
// ð
console.log(cow)
// ð
console.log(camel)
// ðŠ
console.log(pig)
// ð
In the same way, you can assign default values to the variables.Thus, if you have more variables than there are in the array, your variables will still have values defined.
const fruits = ['ð','ð','ð','ð'];
const [
cherries = 'Two Cherries',
grapes = 'A lot of Grapes',
apple = 'Red Apple',
pear = 'One Pear',
peach = 'ð',
mango = 'ðĨ'
] = fruits;
console.log(grapes)
// ð
console.log(pear)
// ð
console.log(peach)
// ð
console.log(mango)
// ðĨ
We can assign value to a declared variable using destructuring.
let pie, cupcake;
[pie, cupcake] = ['ðĨ§', 'ð§']
console.log(pie)
// ðĨ§
console.log(cupcake)
// ð§
Variable Swap
Again, we can swap two variables in a single destructuring expression.
let owl = 'ðĶĒ';
let swan = 'ðĶ';
[owl, swan] = [swan, owl]
console.log(owl)
// ðĶ
console.log(swan)
// ðĶĒ
Using rest
However, trailing items in an array can be captured with a "rest" pattern
let [peacock, parrot, ...restBirds] = ["ðĶ", "ðĶ", "ðĶĒ", "ðĶĐ", "ðĶ", "ð§", "ðĶ
", "ðĶ", "ðĶ"];
console.log(peacock)
// ðĶ
console.log(parrot)
// ðĶ
console.log(restBirds)
// ["ðĶĒ", "ðĶĐ", "ðĶ", "ð§", "ðĶ
", "ðĶ", "ðĶ"]
Moreover, items in the array being destructured can be skipped.
// skipping ðĶĒ, ðĶĐ, ðĶ
let [peacock, parrot, ,,,...restBirds] = ["ðĶ", "ðĶ", "ðĶĒ", "ðĶĐ", "ðĶ", "ð§", "ðĶ
", "ðĶ", "ðĶ"];
console.log(peacock)
// ðĶ
console.log(parrot)
// ðĶ
console.log(restBirds)
// ["ð§", "ðĶ
", "ðĶ", "ðĶ"]
Array returned from a function
Furthermore, destructuring can make working with an array returned from a function more simpler.
function mamals() {
return ["ðĶ", "ðĶĶ", "ðĶ§", "ðĶ"]
}
let [llama, otter, orangutan, kangaroo] = mamals()
console.log(llama)
// ðĶ
console.log(otter)
// ðĶĶ
console.log(orangutan)
// ðĶ§
console.log(kangaroo)
// ðĶ
function fruits() {
return ["ð", "ðĨ", "ð", "ð"]
}
// skipping ðĨ and ð
let [pear,,,cherries] = fruits()
console.log(pear)
// ð
console.log(cherries)
// ð
Object Destructuring
With ES6, we can use destructuring to assign object values to variables.
Basic Object Destructuring
The example below uses the same variables as the keys in the object but you can use a different variable name as well.
const vehicles = {
car: "ð",
taxi: "ð",
bus: "ð",
minibus: "ð"
};
const { car, taxi, bus, minibus } = vehicles
console.log(car)
// ð
console.log(taxi)
// ð
console.log(bus)
// ð
console.log(minibus)
// ð
Variable assignment without declaration
let boy, girl;
({boy, girl} = {boy: "ðĶ", girl: "ð§"})
You probably have noticed the ( ... )
around the object literal destructuring assignment without a declaration. This is because the parentheses ( ... )
around the assignment statement is required.
let boy, girl;
{boy, girl} = {boy: "ðĶ", girl: "ð§"}
//invalid stand-alone syntax as {boy, girl} is considered a block and not an object literal.
const {boy, girl} = {boy: "ðĶ", girl: "ð§"}
// is a valid syntax
({boy, girl} = {boy: "ðĶ", girl: "ð§"}) // is also a valid statement
Default Values
Default values can be assigned to the variable in a destructuring assignment if the unpacked value from the object is undefined
.
const {unicorn = "ðĶ", eagle = "ðĶ
", chicken = "ð"} = {unicorn: "ðĶ"}
console.log(unicorn)
// ðĶ
console.log(chicken)
// ð
Likewise, a property unpacked from an object can be assigned to a variable with a different name.
const balls = {fball: "â―ïļ", bball: "ð", sball: "ðĨ", vball: "ð"}
const {fball: football, bball: basketball, sball: softball, vball: volleyball} = balls
console.log(football)
// â―ïļ
console.log(basketball)
// ð
console.log(softball)
// ðĨ
console.log(volleyball)
// ð
Similarly, we can unpack fields from objects passed as a function parameter
const animals = {
id: 23,
location: "Madagascar",
birds: {
swan: "ðĶĒ",
cockerel: "ð",
turkey: "ðĶ",
flamingo: "ðĶĐ",
parrot: "ðĶ"
},
mammals: {
skunk: "ðĶĻ",
raccoon: "ðĶ",
kangaroo: "ðĶ",
badger: "ðĶĄ",
llama: "ðĶ"
}
}
function whereis({location, mammals: {raccoon: image}}){
return `${image} is located at ${location}`
}
function whichGroup({birds: {swan: bird}, mammals: {badger: mammal}}){
return `${bird} is a bird and ${mammal} is a mamal`
}
console.log(whereis(animals))
console.log(whichGroup(animals))
Nested object and array destructuring
We can also destructure a nested object and array.
const animals = {
id: 23,
location: "Madagascar",
birds: [
{
swan: "ðĶĒ",
family: "Anatidae",
genus: "Cygnus"
}
],
mammals: {
skunk: "ðĶĻ",
raccoon: "ðĶ",
kangaroo: "ðĶ",
badger: "ðĶĄ",
llama: "ðĶ"
}
}
let {
location: animalLocation,
birds: [
{
swan: emoji,
family: animalFamily,
genus: animalGenus
}
]
} = animals
console.log(animalLocation)
//Madagascar
console.log(emoji)
// ðĶĒ
console.log(animalFamily)
// Anatidae
console.log(animalGenus)
// Cygnus
Rest in Object Destructuring
Of course, it is possible to use rest in object destructuring. In this case, the rest syntax can be used to collect remaining property keys that are not already picked off by the destructuring pattern.
const flags = { colombia: "ðĻðī", china: "ðĻðģ", cyprus: "ðĻðū", ecuador: "ðŠðĻ", egypt: "ðŠðŽ", france: "ðŦð·"}
let {colombia, china, ...restCountries} = flags
console.log(colombia)
// ðĻðī
console.log(china)
// ðĻðģ
console.log(restCountries)
// { cyprus: "ðĻðū", ecuador: "ðŠðĻ", egypt: "ðŠðŽ", france: "ðŦð·"}
Finally, with ES6 array and object destructuring, you can do a whole lot. And I believe there is so much to destructuring, so I will appreciate it if you can share in the comment your experience with ES6 destructuring.
Useful Resources
Destructuring assignment
Destructuring assignment - JavaScript | MDN
ES6 In Depth: Destructuring - Mozilla Hacks - the Web developer blog
Top comments (0)