Hi all.
I have a question to this lesson.
Why should I ever use ‘Destructuring Assignment’?
const {tomorrow:{max:maxOfTomorrow}} = forecast;
The old way is shorter and more beautiful.
const maxOfTomorrow = forecast.tomorrow.max;
So why or when ?