What are Higher-order functions (HOF)? The benefits of using them in your projects.

What are Higher-order functions (HOF)? The benefits of using them in your projects.

Daily short news for you
  • swapy is a library that helps you create drag-and-drop actions to easily swap the positions of components.

    The library supports a wide range of platforms, making it perfect for building something personalized like a user’s Dashboard.

    » Read more
  • After waking up, I saw the news feed flooded with articles about Microsoft rewriting the TypeScript compiler - tsc in Go, achieving performance that is 10 times faster than the current one. Wow!

    But when I saw this news, the question immediately popped into my head: "Why not Rust?" You know, the trend of rewriting everything in Rust is hotter than ever, and it’s not an exaggeration to say that it's sweeping through the rankings of previous legacy tools.

    What’s even more interesting is the choice of Go - which supposedly provides the best performance to date - as they say. Many people expressed disappointment about why it wasn’t C# instead 😆. When something is too famous, everything is scrutinized down to the smallest detail, and not everyone listens to what is said 🥶

    Why Go? #411

    » Read more
  • I read this article Migrating Off Oh-My-Zsh and other recent Yak Shavings - the author essentially states that he has been using Oh-My-Zsh (OMZ) for a long time, but now the game has changed, and there are many more powerful tools that have come out, so he realizes, oh, he doesn't need OMZ as much anymore.

    I also tried to follow along because I find this situation quite similar to the current state. It was surprising to discover something new. I hope to soon write a post about this next migration for my readers 😁

    » Read more

The Problem

I still remember when I first read an article about Higher-order functions, there was a certain level of confusion. Being new to the field, the theoretical aspect was quite difficult to grasp. At that time, I understood the concept but couldn't visualize its practical applications. It took me a while to realize that this was something I had been using regularly all along!

There are already many articles about Higher-order functions on the internet, just search on Google and you will find them. However, because HOF is an important and highly applicable concept, I would like to write an article from a personal perspective. Without further ado, let's get started.

What are HOF?

Higher-order functions in JavaScript are functions that can take one or more functions as arguments or return another function.

For example, a function can be passed as an argument to another function, or a function can return another function to be used in our code. This allows us to create flexible and reusable functions.

In JavaScript, functions like map, filter, reduce... are typical examples of HOF. They all take a function as an argument and apply that function to an array or other values to perform a certain transformation.

How to use them

You can apply HOF to create flexible functions of your own or create reusable functions.

One of the common use cases for HOF is in functions like map, filter, reduce. If you are not familiar with the usefulness of these three functions, I have a detailed article on Why you should be proficient with the map, filter, and reduce trio in JavaScript?.

Back to the problem, let's say we have an array and we need to apply an operation to all elements in it, then we use map.

const arr = [1, 2, 3];
const arr2 = arr.map(function (item) {
  return item + 1;
});

map is an HOF because it takes a function as a parameter. As the parameter is a function, we can rewrite the above code in a reusable way like this:

const addOne = a => a + 1;

const arr = [1, 2, 3];
const arr2 = arr.map(addOne);

addOne is a function that takes a number a and returns a + 1. Thus, we can use addOne in multiple map functions without the need to rewrite the addition logic.

Benefits of HOF

HOF brings many benefits in programming:

  • Reusability: HOF allows creating flexible and reusable functions to solve various problems without rewriting the same code multiple times. It reduces code duplication.

  • Separation of data and logic, simplifying code writing: HOF allows separating data and logic, making the code more readable and maintainable. In the example above, instead of guessing what map is doing, we can just look at the function name addOne to get an idea.

  • Many HOF functions are created to support programming. Examples include map, filter, and many others. They are designed to save coding time, as without them, you would have to write more code to achieve the same purpose. In addition, there are many HOF functions in asynchronous processing like Promise, async/await, and application libraries that provide flexible processing functions for developers.

Along with the benefits, HOF can be difficult to understand and access for beginners in JavaScript, but this problem can be overcome with time. Additionally, using too many HOF functions can introduce a certain level of complexity in code comprehension and maintenance (each function is an object created), or for future maintenance. However, these weaknesses can be completely overcome with time and experience gained by programmers.

Conclusion

Higher-order functions (HOF) are functions that can take functions or return a function. HOF is widely used in JavaScript programming because of the benefits it provides. However, it can also cause difficulties in understanding for beginners and potential maintenance issues.

Premium
Hello

The secret stack of Blog

As a developer, are you curious about the technology secrets or the technical debts of this blog? All secrets will be revealed in the article below. What are you waiting for, click now!

As a developer, are you curious about the technology secrets or the technical debts of this blog? All secrets will be revealed in the article below. What are you waiting for, click now!

View all

Subscribe to receive new article notifications

or
* The summary newsletter is sent every 1-2 weeks, cancel anytime.

Comments (0)

Leave a comment...