← Code LabJavaScript0/50 solved · 0%
Syntax · easy

9. Destructuring

Pull fields out of objects and arrays.

Write `label(wallet)` that destructures `{ address, balance }` in the parameter list and returns `` `${address}:${balance}` ``.
Required in your answer: { addressbalance }