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 Callbacks Review

If a function is called from another function but is not passed in as a callback, is the parent function asynchronous?

If a function is called from another function but is not passed in as a callback, is the parent function asynchronous? Are callbacks a prerequisite for asynchronous functions?

1 Answer

Steven Parker
Steven Parker
230,970 Points

While callbacks are a common communication method for asynchronous functions, just having one does not make a function asynchronous. Plus you can have asynchronous functions that don't take callbacks (example: "fetch").

And simply calling a (normal) function from inside another one does not make either one asynchronous.

What is the benefit of using callbacks vs calling another function within the body of the parent function? Is it for readability because the callback is listed as one of the function arguments?

Steven Parker
Steven Parker
230,970 Points

A function called in the body will always be the same function. But with a callback, the caller tells the function which other function to call, so it might be different each time.