How to set default values while destructuring
One really handy thing JavaScript provide us is destructuring. I love it
and it can make our code much cleaner. Let us take a look at a simple piece
of code:
const profile = {
name: 'Telmo',
twitter: '@telmo',
age: 34,
}
Now, if we want to acc...
h.telmo.is3 min read