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

Synchronous callbacks

Could you please elaborate the example of synchronous callbacks?

1 Answer

Hello,

I will do my best to answer from my understanding of this topic. There isn't such a thing as a Synchronous callback because a callback is an action performed at some point future. Callbacks are Asynchronous.

A callback is listed as a functions parameter and it doesn't get executed until the future when it gets called in the body of the function. It can be one, two, or a hundred lines of code, but it's at some point in the future making it Asynchronous.

I hope this helps.