Learn how to destructure objects and arrays
Destructuring is a convenient way of extracting multiple values
from data stored in objects and Arrays.
Let's take a look on how to destructure an object:
const info = { name: 'Telmo', age: 33, twitterHandler: '@telmo' }
// Destructure data from `i...
h.telmo.is5 min read