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 trialGeorge Sanchez
1,775 PointsObjects: Challenge Task 2
Can anybody tell me if I'm missing something here?
var shanghai = {
population: 14.35e6,
longitude: '31.2000 N',
latitude: '121.5000 E',
country: 'CHN'
};
for (var prop in shanghai) {
console.log(prop, ': ', shanghai[prop]);
console.log(shanghai[prop]);
console.log(shanghai[prop]);
console.log(shanghai[prop]);
console.log(shanghai[prop]);
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Objects</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
2 Answers
Brandon White
Full Stack JavaScript Techdegree Graduate 35,771 PointsHey George Sanchez,
Youโre not really missing anything. I just think you may be a bit confused by the objective.
Youโre logging each prop and value to the console four times like the challenge requests. And in addition youโre logging each prop value to the console an additional four times.
If you get rid of the last four console.log functions, you will have completed this challenge.
George Sanchez
1,775 PointsThank you Brandon. I definitely got confused by the objective. Especially since every time I hit submit it was saying "I need to print 4 lines". Thank you again, works now lol