scrimba
Frontend Career Path
Essential JavaScript concepts
JS Mini Projects
Object Destructuring Challenge
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

Object Destructuring Challenge
AboutCommentsNotes
Object Destructuring Challenge
Expand for more info
index.js
run
preview
console
const dreamHoliday = {
destination: '',
activity: '',
accommodation: '',
companion: ''
}

/*
Challenge
1. Complete the object dreamHoliday with whatever
information is true for you. Feel free to add
extra properties or change the existing ones.
2. Destructure the object and use the individual
variables to log out one or more sentences about
your dream holiday.

E.g. "I would love to go to Austin, Texas to visit the Tesla HQ.
I'd sleep in a luxury ranch and hang out with Elon Musk all day."
*/
Console
/index.html
-2:02