Tiny Frontend Logo
Posts 0118

On This Page

Higher-Order Functions (HOF) in JavaScript

In JavaScript, functions are treated as first-class citizens. We can use functions as values, assign them to variables, pass them as arguments to other functions, or even return them from other functions.

This powerful feature enables us to create Higher-Order Functions (HOF).

What are Higher-Order Functions?

A higher-order function is a function that either:

  1. Takes another function as an argument
  2. Returns a function.

These functions provide abstraction, composition, and flexibility, allowing us to write cleaner and more modular code.

The Skeleton Code

You can follow this pattern to create a Higher-Order Function.

Pattern A: Takes Another Function as Arguments

The higher-order function (HOF) accepts both the original function and its parameters simultaneously, and directly returns the final result.

// create the HOF
// - func: origin function
// - params: extra params for the new HOF
function higherOrderFunction (func, ...params) {
    const result = extraOperations(
        func(params)
    );
    return result;
}
// call the HOF
higherOrderFunction(myFunc, 1234);

Pattern B: Returns a Function

The creator function takes one function as its parameter and returns a new function that invokes the original function along with some additional operations.

// create the HOF
// - func: origin function
function createHOF (func) {
    return function (params) {
        // call origin function
        func();
        // do some extra works
        otherWorks();
        // return final result
        return result;
    }
}

const myHOF = createHOF(myFunc);
myHOF(1234);
myHOF(6789);
Subscribe to read the full content

* Free subscribe to enjoy full content access.
* You can cancel anytime with 1-click.

Read Next

0117

JavaScript Closures

This question frequently arises during interviews. If you're unsure, here is everything you should know!

JavaScript Closures
0116

Ordering Flexible Elements

In many cases, we rely on the flex-direction property to manage the display order of flexible items.

Ordering Flexible Elements
0115

JavaScript: Page Location

Whether you're a seasoned developer or just starting your journey, understanding how to manipulate the web page's location through JavaScript can be a very useful tool in your arsenal.

JavaScript: Page Location
0114

Cookies

As a frontend developer, understanding how cookies work is essential for building robust web applications. In this article, we'll explore the world of browser cookies, demystify their mechanics, and learn how to harness their power in your projects.

0113

JavaScript: Local Storage

Understanding how to store data on the client side is essential for creating robust web applications. In this article, we'll explore local storage, one of the key mechanisms for caching data within the user's browser. Let's dive in!

0112

JavaScript: Session Storage

As a frontend developer, understanding how to store data on the client side is crucial. In this article, we’ll delve into the world of web storage, specifically focusing on session storage. Let’s explore what it is, how it works, and when to use it.

JavaScript: Session Storage