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 trialQasim Rashad
Front End Web Development Techdegree Student 7,837 PointsSeeking help
I've been having difficulties passing this task for a few hours, I watch the videos and still confuse on the tasks. On task 1 it tells me to not change anything in the object, so I created a second "population" and place the value in it and passed it but its not the "correct" way of doing it, so for task 2 It tells me to put country and a = sign to USA nothing else and I did but says tasks 1 is not passing now, can someone break it down for me on how to complete this tasks?
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>
2 Answers
Steven Parker
231,236 PointsWithout giving a spoiler, here's a generic example. Let's say you had an object named "person" that had properties for "name" and "age":
var person = {
name = "Joe",
age = 24
};
Now, without changing the original definition, let's update this person's age to be 25:
person.age = 25;
Then we want to give the person a new property which is their brand of car:
person.car = "Honda";
Make sense now?
Hirenkumar Patel
Courses Plus Student 9,464 PointsnewYork.population = 8.406e6;
Qasim Rashad
Front End Web Development Techdegree Student 7,837 PointsQasim Rashad
Front End Web Development Techdegree Student 7,837 PointsOk it making sense now, so I put βnewYork.population = 8.406e6β even though it says error still itβs the correct set up. So is it because Iβm missing something small?
Steven Parker
231,236 PointsSteven Parker
231,236 PointsWhen I paste that line in to task 1, it passes. Are you still having trouble?