Callbacks: The Definitive Guide

No.

They’re they lifeblood of JavaScript, but they do pose a problem for JS beginners.

I don’t remember why, but when I first started using JS, I wanted a way to sleep or wait.

Instead, I was stuck with the complicated indirection of setTimeout.

These days, it’s the complete opposite, but that’s because, once I learned how to use callbacks, they became increasingly powerful.

And then there’s the lack of a return value; another problematic situation.

Regular functions sometimes lack return values, but with async callbacks, if you return a value, that value usually goes nowhere.

It’s actually possible to grab a hold of these return values, but only when you callbacks are synchronous.

You’ll see this kind of synchronous callback behavior all over the place in promises, observables, and even Array.

prototype functions like map, filter, and reduce.

Callbacks are Also SynchronousWhile callbacks are commonly thought of as asynchronous, they’re also able to be executed synchronously:If you’ve figured it out, this could really be made easier by calling another function at the end of your code instead of using a callback:So why would you even use a callback if it’s not asynchronous?.In this simpler example, the non-callback example looks easier to read, but there are times you might want to generalize some code and that’s where data comes into play.

Callbacks With DataMaybe you have a generic method that passes some data back into your callback.

If that’s the case, suddenly it makes more sense why you’d use a callback instead of just calling the function directly.

But even still, most people don’t do that unless they’re writing libraries.

Notice in logDataSynchronously, your function can only log data.

There’s absolutely nowhere to go after that.

We could improve on this function by moving our logging operation out and returning the data.

Then we can call it and log the info we received:We’ve made it significantly better, but we’re writing how our function gives us data rather than have it do that for us.

I used to write quite a bit of code like this in the past, and it’s got some limitations as you’ll see.

Callbacks are More PowerfulIn older JavaScript applications, you wouldn’t want to make functions available globally so the best way you could pass them around was using callbacks.

In that same vein, if you do any unit testing, dependency injection is made significantly easier with callbacks.

That’s why I think getDataSynchronously could be improved by being the callback-based giveDataSychronously:Other than the fact that we’re now passing data, our code has been nearly unchanged from the original callback example.

While it may seem strange to think about, giveDataSynchronously could be synchronous or asynchronous, and you wouldn’t even need to know.

That’s the beauty of it.

Your code is the same either way.

Not every developer agrees though.

JS beginners suffer the most because of the differences in how sync and async callbacks are handled.

These are the cause of some very frustrating “it works sometimes and not others” situations.

If you’re used to thinking in terms of callbacks, there’s a lot less to worry about in terms of gotcha’s because synchronous callbacks usually return values and asynchronous callbacks don’t.

It’s that simple.

And in a completely different world, if you’ve ever developed a plugin for Google’s Chrome browser, you’ll notice some APIs accept callbacks that both return a synchronous value and call other callback functions asynchronously.

Ridiculous!.It’s a nightmare to work with and makes your code unnecessarily complex.

Callback Hell!Any callback chain has the possibility of becoming callback-hell.

This occurs when you create a lot of anonymous — unnamed — functions as callbacks which call functions that require another callback and so on:If you name all of those functions instead of keeping them anonymous, you’re not only stating their purpose, but you’re completely removing callback-hell:That’s one way of putting it.

Callback-hell definitely makes things harder to read because they can tab out really far.

I think of it differently though.

Having a bunch of indirection is even worse.

Without all that recursive scoping, you have no way of knowing which server or which connection your message came from.

Now you have to use functional closures to retain state:Congratulations.

You made your application significantly harder for anyone to maintain (including you 6 months later).

Good luck!.I’ve done similar things like this before when my computational logic was just too much for callback-hell, but even better, I refactored it to use observables instead and got rid of that problem entirely.

The issue is one of scope.

Because callback-hell allows for easy-scoping, it removes a lot of the indirection caused by named-callback-hell.

Now you have to look all around the codebase to figure out where these functions are coming from and what they do.

And in a lot of projects, most I’ve worked in (including my own), callbacks like this tend to be spread out among a bunch of files.

The less of those you need to look at and the more-generic they are (meaning you see them more often), the better.

Instead of having a mostly-linear pipeline like all other async methods, you’re dealing with a function calling another function that then calls yet another function.

It’s almost like the complexity of a thousand-line function.

All of this is pretty surprising because callbacks are technically a functional programmer’s tool of choice and fp is supposed to make your code easier to follow.

This is why observables are the better version of callbacks.

They make your code more readable and easier-to-follow as well as allow functional programming.

Asynchronous CallbacksAs stated earlier, synchronous callbacks are asynchronous callbacks.

But what do those look like?.What’s happening in that // Do some processing.

comment that makes a callback async?setTimeoutYep!.Just about anything async has to do with setTimeout.

Even setInterval can be built with setTimeout.

They’re referred to as schedulers because they allow you specify their execution time as “sometime after this function” all the way up to the integer max.

Another way to think about schedulers is concurrency.

By asynchronously executing tasks, you’re able to run many tasks concurrently even in a single thread.

Pretty rad!In Node.

js, this is referred to as the Event Loop.

In fact, Node.

js has ways of manipulating the order in which callbacks are processed with process.

nextTick which can either prioritize or significantly slow down your app depending on how you use it.

In JavaScript, almost anything that has to pull data into your app or push data out will always be asynchronous because it’s not going to be running in the same thread; thus, it’s speed of execution cannot be determined.

If it’s synchronous though, such as rendering to the DOM or dealing with localStorage, then yes, your app’s performance will suffer.

Just Try and Catch ErrorsAnother issue is that callbacks do not work with try-catch.

That’s not entirely true, you can use them in your callback functions, but if you wrap a function that accepts a callback in a try-catch, it won’t catch an error in your callback or the accepting function.

This is a huge beginner sand-trap and one you should be aware.

Take this function example:It throws an error.

You could wrap it in a try-catch no problem.

Let’s put this same function in an async callback:To catch an error, you have to move your try-catch to the callback function itself:Although, if your callback is synchronous, then you can catch errors using try-catch:This is another beginner pitfall, but also one that could trip up even JS vets because it’s so simple to screw up.

Like I’ve shown, if you’re used to synchronous callbacks, then when you write asynchronous callbacks, you might not realize your old method of using try-catch just won’t work.

Suddenly, you’ve created an anti-pattern.

ConclusionCompared to any other async handlers, these are the benefits of callbacks:Can receive zero or more values over time.

Can receive zero or more arguments.

Allows returning nothing or data and errors.

Somewhat easy to cancel (it depends on the implementation).

These pros allow a lot of versatility, the same versatility that allows all forms of async to be based on callbacks.

On the other hand, most callbacks require some boilerplate like those in Node.

js, but since they’re inherently functional, you can compose around that boilerplate like so:In this way, we’re first calling handleError by passing in our function doTheThing as a callback.

It returns a new function that listens for error and …args.

When a function returns another function like handleError, it’s referred to as a closure and allows us to compose handleError and doTheThing as part of what happens when our 'event' fires.

While never referred to as callback’ception, this allows us to manage boilerplate — in this case handling errors — without having to copy-paste a bunch of code.

Lack of Standards (by design)It can also be very confusing, as a developer, what kind of callback you’re working with.

If it’s one you made yourself, you need to standardize how it works since in Node.

js, the error is the first argument and with DOM event callbacks, they have a specific way they cancel.

Other callbacks, like those found in Array.

prototype.

map pass multiple arguments such as the index and the originating array.

You have to be aware those are being passed in, or your …args will cause problems.

So while they’re everywhere, I would still limit their use.

There are only two methods which surpass callbacks: Observables and Generators.

Native JS promises are another beast and while convenient, since they’re part of the language, they’re currently not in a state where they’re that much better than callbacks and, in fact, can be worse.

More ReadsI’ve got more of these async articles coming!.If you liked what you read, please checkout my other articles on similar eye-opening topics:Redux-Observable without ReduxFeature Flags: Be Truly AgileAn Emoji-Lover’s Guide to Functional Programming: Part 1Async React using React Router & SuspenseUsing Transducers to Speed Up JavaScript Arrays.. More details

Leave a Reply