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

Complete the code below to display every property and value of an object named location:

I am having quiz the question was Complete the code below to display every property and value of an object named location:

__________ ( property _______________ location ) {
  document.write('<p>' + property + ':' + location[property] + '</p>');
}????

What is the answers for those underlines. ?

3 Answers

for (property in location) { document.write('<p>' + property + ' : ' + location[property] + '</p>'); }

thanks, was stuck on that one

thanks, was stuck on that one

This worked for me...

for ( var property in location ) {
document.write('<p>' + property + ':' + location[property] + '</p>');
}

Also I was stuck with this question because the word 'var' is not included before 'property'. So 'var' is not mandatory in the for in structure?

You do not have to include var, however if you do not then you are declaring property in the global scope rather than the local scope.