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 (2014) Building a Command Line Application Getting the Response Body

Ruxandra Chirea
Ruxandra Chirea
12,764 Points

Why is it not necessary for the first callback to return the body?

I was kind of expecting the on('data') callback function to have to return the body variable for it to be able to work in the next one. Wouldn't that be normal JavaScript behavior? Are things different in node.js?

1 Answer

Ernesto Salazar
Ernesto Salazar
21,555 Points

Because the body is a variable defined inside the http.get callback so when is treated inside the function it is actually affecting that variable and now that variable is full of information taken from the 'data' event callback.