DEV Community

Cover image for Javascript ES6 Array and Object Destructuring
Ayekple Clemence
Ayekple Clemence

Posted on • Originally published at anansewaa.com

Javascript ES6 Array and Object Destructuring

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)