DEV Community

Peter Perkins
Peter Perkins

Posted on

1

Learn Array Destructuring

๐Ÿ‘ #mustknow

Learning JS or React? Learn to deconstruct arrays using the destructuring assignment syntax.

Example curtesy MND Web Docs
({ a, b } = { a: 10, b: 20 });
console.log(a); // 10
console.log(b); // 20
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Image of Docusign

๐Ÿ› ๏ธ Bring your solution into Docusign. Reach over 1.6M customers.

Docusign is now extensible. Overcome challenges with disconnected products and inaccessible data by bringing your solutions into Docusign and publishing to 1.6M customers in the App Center.

Learn more