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 trialJason Peay
16,515 PointsHow to pass in an anonymous function?
Now, in the http.get() call pass in an anonymous function as a callback with the parameter response. This function is the second parameter in the get call.
I received this message. Bummer! missing ) after argument list
var http = require ("http");
http.get("http://teamtreehouse.com/chalkers.json" function(response) );
1 Answer
Jennifer Nordell
Treehouse TeacherHi Jason! You're very close here. Because we're now passing in two things to the .get
method we now need to separate those two things with a comma. Also, a function requires open and closed curly braces. Take a look:
var http = require('http');
http.get("http://teamtreehouse.com/chalkers.json", function(response){
});
Here we're sending in the URL and an anonymous function. Because these are arguments, they need to be separated by a comma. The response is sent in to the anonymous function, and that part you had correct. But we also still need the open and closed curly braces.
Hope this helps!
Jason Peay
16,515 PointsJason Peay
16,515 PointsThanks, Jennifer. I understand now. I just didn't see it the code challenge.
Jason Peay
16,515 PointsJason Peay
16,515 PointsIs there a way to once an answer is marked best, to go back and review or saved it. In order to recall it, for a later code challenge, if needed?
Jennifer Nordell
Treehouse TeacherJennifer Nordell
Treehouse TeacherNot that I'm aware of. I generally just keep a list of links in a text file with notes describing what the problem/answer was about
Jason Peay
16,515 PointsJason Peay
16,515 PointsThanks for that bit of information