Destructuring
Destructuring is a convenient syntax for extracting values from arrays or objects into distinct variables.
Object Destructuring
Extract properties by their names.
Array Destructuring
Extract values by their position.
Practice
Challenge 1: Create an object with 3 properties, then destructure two of them into variables.