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 PointsConfuse on this task
I'm having a difficult time. It's telling me don't mess with the original objects just add "country" with an = sign to USA, I did but says "task 1 is no longer passing" am I'm doing something wrong for the code to not pass?
var newYork = {
population: 100,
latitude: '40.7127 N',
longitude: '74.0059 W',
population: 8.406,
};
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Objects</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
1 Answer
james south
Front End Web Development Techdegree Graduate 33,271 Pointstask 1 asks you to not change the object definition like you have. also on all challenges there is a note in grey above the coding box that says add to your code from previous tasks, don't replace it. so leave your line from task 1 in place, then for task 2 use a similar line to add the country key.
Qasim Rashad
Front End Web Development Techdegree Student 7,837 PointsQasim Rashad
Front End Web Development Techdegree Student 7,837 PointsOK so for task one I took out population: 8.406e6. And it came out to error now but says donβt change nothing so how can i passs it?