Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Loops, Arrays and Objects Tracking Data Using Objects Create an Empty JavaScript Object

Jonathan Söder
Jonathan Söder
7,428 Points

Create an object named paris

I mean, I just woke up but what is it that I'm not getting?? O.o

"Create an object named paris. To start, just create a new, empty object literal and assign it to the variable paris."

var paris {

}

Bummer! There was an error with your code: SyntaxError: Parse error

Thanks

3 Answers

Hey Jonathan ..

Probably its the sleepy mind mate :) . Have a coffee first :D.. Creating a an object literal and assigning to the variable Paris

var paris = {}

Hope that helps

Make sure you use the "var" keyword, instead of "let" or "const", or you will get marked wrong.