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 trial

JavaScript Node.js Basics 2017 Building a Command Line Application Making a GET Request with https

Danilo Chamorro
PLUS
Danilo Chamorro
Courses Plus Student 9,398 Points

I dont understand what the anonymous function with response as a paramater is.

Im confused in this step.

app.js
const https = require('https');

https.get('https://teamtreehouse.com/chalkers.json',(res) => (response){}));

1 Answer

Steven Parker
Steven Parker
231,007 Points

Your syntax is a bit off, in an arrow function, the opening brace should follow the "arrow" with nothing in between. It also looks like you have an unmatched extra closing parenthesis at the end of the statement.

And since the parameter(s) go in_front_ of the "arrow", this code is defining an anonymous function with a parameter named "res" instead of "response".