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 trialJeffrey Holcomb
Full Stack JavaScript Techdegree Graduate 17,506 PointsWhat 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.
1 Answer
Jeffrey Holcomb
Full Stack JavaScript Techdegree Graduate 17,506 PointsThanks 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!
Reggie Williams
Treehouse TeacherReggie Williams
Treehouse TeacherHey 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