Hello-World-Software-Studios / calculator

Carpenter's tool for wall layout
0 stars 1 forks source link

Destructure straight from JSON #50

Closed ecumene closed 3 years ago

ecumene commented 3 years ago
      const json = await res.json();
      const {id: incomingID} = json[0];

becomes...

      const [{id: incomingID}] = await res.json();
JPM709 commented 3 years ago

Got it. When destructuring an array of objects, it can be done on one line as well.