Object and Array Destructuring in JavaScript with ES6

Destructuring is a JavaScript expression that makes it possible to unpack values from arrays, or properties from objects, into distinct variables. Destructuring assignment is a cool feature that came along with ES6. Read more

Similar