Callback
Introduction: callbacks
We use browser methods in examples here
To demonstrate the use of callbacks, promises and other abstract concepts, we’ll be using some browser methods: specifically, loading scripts and performing simple document manipulations.
If you’re not familiar with these methods, and their usage in the examples is confusing, you may want to read a few chapters from the next part of the tutorial.
Although, we’ll try to make things clear anyway. There won’t be anything really complex browser-wise.
Many functions are provided by JavaScript host environments that allow you to schedule asynchronous actions. In other words, actions that we initiate now, but they finish later.
For instance, one such function is the setTimeout
function.
There are other real-world examples of asynchronous actions, e.g. loading scripts and modules (we’ll cover them in later chapters).
Take a look at the function loadScript(src)
, that loads a script with the given src
:
It inserts into the document a new, dynamically created, tag <script src="…">
with the given src
. The browser automatically starts loading it and executes when complete.
We can use this function like this:
The script is executed “asynchronously”, as it starts loading now, but runs later, when the function has already finished.
If there’s any code below loadScript(…)
, it doesn’t wait until the script loading finishes.
Let’s say we need to use the new script as soon as it loads. It declares new functions, and we want to run them.
But if we do that immediately after the loadScript(…)
call, that wouldn’t work:
Naturally, the browser probably didn’t have time to load the script. As of now, the loadScript
function doesn’t provide a way to track the load completion. The script loads and eventually runs, that’s all. But we’d like to know when it happens, to use new functions and variables from that script.
Let’s add a callback
function as a second argument to loadScript
that should execute when the script loads:
The onload
event is described in the article Resource loading: onload and onerror, it basically executes a function after the script is loaded and executed.
Now if we want to call new functions from the script, we should write that in the callback:
That’s the idea: the second argument is a function (usually anonymous) that runs when the action is completed.
Here’s a runnable example with a real script:
That’s called a “callback-based” style of asynchronous programming. A function that does something asynchronously should provide a callback
argument where we put the function to run after it’s complete.
Here we did it in loadScript
, but of course it’s a general approach.
How can we load two scripts sequentially: the first one, and then the second one after it?
The natural solution would be to put the second loadScript
call inside the callback, like this:
After the outer loadScript
is complete, the callback initiates the inner one.
What if we want one more script…?
So, every new action is inside a callback. That’s fine for few actions, but not good for many, so we’ll see other variants soon.
In the above examples we didn’t consider errors. What if the script loading fails? Our callback should be able to react on that.
Here’s an improved version of loadScript
that tracks loading errors:
It calls callback(null, script)
for successful load and callback(error)
otherwise.
The usage:
Once again, the recipe that we used for loadScript
is actually quite common. It’s called the “error-first callback” style.
The convention is:
The first argument of the
callback
is reserved for an error if it occurs. Thencallback(err)
is called.The second argument (and the next ones if needed) are for the successful result. Then
callback(null, result1, result2…)
is called.
So the single callback
function is used both for reporting errors and passing back results.
At first glance, it looks like a viable approach to asynchronous coding. And indeed it is. For one or maybe two nested calls it looks fine.
But for multiple asynchronous actions that follow one after another, we’ll have code like this:
In the code above:
We load
1.js
, then if there’s no error…We load
2.js
, then if there’s no error…We load
3.js
, then if there’s no error – do something else(*)
.
As calls become more nested, the code becomes deeper and increasingly more difficult to manage, especially if we have real code instead of ...
that may include more loops, conditional statements and so on.
That’s sometimes called “callback hell” or “pyramid of doom.”
The “pyramid” of nested calls grows to the right with every asynchronous action. Soon it spirals out of control.
So this way of coding isn’t very good.
We can try to alleviate the problem by making every action a standalone function, like this:
See? It does the same thing, and there’s no deep nesting now because we made every action a separate top-level function.
It works, but the code looks like a torn apart spreadsheet. It’s difficult to read, and you probably noticed that one needs to eye-jump between pieces while reading it. That’s inconvenient, especially if the reader is not familiar with the code and doesn’t know where to eye-jump.
Also, the functions named step*
are all of single use, they are created only to avoid the “pyramid of doom.” No one is going to reuse them outside of the action chain. So there’s a bit of namespace cluttering here.
We’d like to have something better.
Luckily, there are other ways to avoid such pyramids. One of the best ways is to use “promises”, described in the next chapter.
Last updated