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 trialMatthew Netherton
2,819 PointsTypo
Hey guys,
I think you've got a typo. The question is worded as such: "The New York variable contains an object" with the wrong value.
Shouldn't it instead say: "The New York object contains a property with the wrong value?"
-Matt
var newYork = {
population: 100,
latitude: '40.7127 N',
longitude: '74.0059 W'
};
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Objects</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
1 Answer
Remi Vledder
14,144 PointsIn this case the wording chosen by the author is correct.
Because a variable is used to assign the object to, using the object initialiser rather than the object constructor.
Read more regarding this subject: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Working_with_Objects#Using_object_initializers