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 Asynchronous Programming with JavaScript Asynchronous JavaScript with Callbacks Implement a Callback

Jeffrey Holcomb
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Jeffrey Holcomb
Full Stack JavaScript Techdegree Graduate 17,506 Points

What is the meaning of having the "return" keyword in the getJSON function?

I see that the getJSON function is written to return callback(data) if the get request is a success. I've noticed that even if you leave out the return keyword, and just have the function call callback(data) instead of return it, the resulting behavior is the same. I'm looking at the code and trying to understand what the meaning of returning the callback function is, but I can't quite wrap my head around it.

Reggie Williams
Reggie Williams
Treehouse Teacher

Hey Jeffrey Holcomb! There is a short section in the teacher's notes below the video about this. Both are acceptable but return provides a way of exiting your function if you need to

1 Answer

Jeffrey Holcomb
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Jeffrey Holcomb
Full Stack JavaScript Techdegree Graduate 17,506 Points

Thanks for the clarification Reggie. I hadn't noticed the Teacher's Notes on this video, but I will make sure to double check that next time I'm having a problem understanding something. Cheers!