DEV Community

Discussion on: 3 Powerful Examples of Destructuring Assignment

Collapse
 
laurieontech profile image
Laurie

Oops, this is what I get for typing directly in the article! I’ll make that fix.

Collapse
 
kip13 profile image
kip • Edited

In the array above you could:

const [{ data }, { status }] = [
  {
    data: {
      item: "this thing"
    },
  },
  {
    status: {
      num: 200
    }
  }
]
Thread Thread
 
laurieontech profile image
Laurie

Yup! And that’s similar to the promise.all example.