Link to home
Start Free TrialLog in
Avatar of Bruce Gust
Bruce GustFlag for United States of America

asked on

How does "callback" work in JavaScript?

Here's my code:

function doHomework(subject, callback) {
  alert(`Starting my ${subject} homework.`);
  callback();
}

doHomework('math', function() {
  alert('Finished my homework');
});

Open in new window


If I run this, I'll get two alerts. The first one says, "Starting my math homework" followed by "Finished my homework."

From what I understand, "callback" is a function that ensures whatever functionality its attached to, that code won't run until AFTER the other code has fired. But I don't understand how that works in this scenario.

If I remove the callback function and make my first block of code look like this:

function doHomework(subject) {
  alert(`Starting my ${subject} homework.);
}

Open in new window


I'l get one alert saying, "Starting my math homework." But "Finished my homework" doesn't show up at all.

Why? What happened? Why didn't "Finished..." show up and how does "callback" make things work the way you would expect them to?
ASKER CERTIFIED SOLUTION
Avatar of Kimputer
Kimputer

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Bruce Gust

ASKER

Kimputer (love that handle)!

I just got done reading another article that makes your explanation all the more relevant.

I'm going to explain this back to you and you tell me if I've got it.

A callback function is a function called within another function. In the example I used, the "callback" variable is actually the function that triggers the "Finished my homework" alert. Without that variable being passed into the "doHomework" function, it would never be triggered.

I was looking at this initially purely from the standpoint of the order that the functions were being fired. If the above explanation is right, I think I've got it.

Thanks!
A callback function is a function called within another function
Yes but that is not the definition - any function can be called inside a function.

A callback is a function passed as a PARAMETER to another function so that the called function can invoke it at some point - usually when the called function has finished doing what it is supposed to do.

Callbacks are usually used for ASYNC functions - where you have an indeterminate amount of time before a called function completes and you want to keep processing other code while waiting for it to complete.

You pass a callback to the ASYNC function with the code you want to run when the ASYNC operation completes.