scrimba
Introduction to ES6+
Destructuring objects
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Destructuring objects
AboutCommentsNotes
Destructuring objects
Expand for more info
index.js
run
preview
console
const player = {
name: 'Lebron James',
club: 'LA Lakers',
address: {
city: 'Los Angeles'
}
};
Console
/index.html
-4:59