Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

mo ode
4,352 PointsAdd a new property -- country -- to newYork. Don't change the original object, just add this new property using a = sign
Add a new property -- country -- to newYork. Don't change the original object, just add this new property using a = sign
var newYork = {
population: 100,
latitude: '40.7127 N',
longitude: '74.0059 W'
};
var population
newYork.population = 8.406e6;
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>
2 Answers

Cheo R
37,150 PointsYou're on the right track. All you have to do is copy one of these three lines (and delete the other two).
var population
newYork.population = 8.406e6;
longitude: '74.0059 W''

Sean T. Unwin
28,660 PointsKeep your answer from Task 1 -- newYork.population = 8.406e6;
For Task 2, on a new line use the same format from Task 1 to set newYork.country
equal to 'USA'.
Each task is one line of code.