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 trialBinu Alexander
4,081 PointsNode.js Basics Challenge Task 3 of 3
ERROR " you didnt log out the 'property' attribute "
What is wrong here ?
var http = require("http");
var request =
http.get("http://teamtreehouse.com/chalkers.json", function(response){
console.log(response.statusCode);
});
request.on('error', function(error){console.error(error)});
Marcus Parsons
15,719 PointsYou're welcome =]
1 Answer
Marcus Parsons
15,719 PointsHi again Binu,
In this part of the challenge, you are very close! You just have to grab the message
from the error
object using dot notation:
request.on('error', function(error){ console.error(error.message); });
cathy mitchell
8,249 PointsMarcus,
Thank you so much for your help on this challenge. I was stuck for awhile.
Binu Alexander
4,081 PointsBinu Alexander
4,081 PointsOK ... thanks again