What Is a Higher Order Function?

When we think of functions in any programming language, we think of reusable code abstracted into a separate block that performs specific tasks. Such functions can take inputs, process them and provide output according to the instructions coded in the function.
Functions normally receive values as inputs, such as numbers, strings, and references or copies of objects and lists, and would optionally return values in those types.
But hold on, what if, for example, we are implementing a timer
function that, after X seconds passed, will execute a given piece of code? Could such a timer
function have another function as its input?
What Are Higher-Order Functions?
In computer science, higher-order functions (a key element of functional programming) are functions that can take other functions as inputs or return them as outputs. They, therefore, allow us to create abstractions over existing functionality and compose new functionality out of existing ones.
As a big fan of functional programming, I love higher-order functions. They are useful for writing more readable and easier-to-maintain code. And its a paradigm I often use when working with JavaScript/TypeScript, especially when working with React. Though I gotta admit, I haven’t used that much of it when working with Python.
Higher-order functions are great, but…
Why Would I Use Higher-Order Functions?
Higher-order functions are useful for writing code that is more general, extensible, and reusable. You can use them to create abstractions over existing functionality and compose new functionality out of existing ones. Additionally, they let you control scope, simplify callbacks (like promises), eliminate unnecessary code duplication, and write cleaner code by separating the logical flow from the implementation details.
Ever worked with filter
, map
, forEach
methods in JavaScript? Those are excellent examples of higher-order JavaScript functions.
Writing Your First Higher-Order Functions
Let’s start simply by building two different higher-order functions. The first one would take a function as input, while the second example would return a function. Next, we’ll write our own definitions for some of the most popular higher-order functions, some of which we have already named before.
All code samples are provided in Python and JavaScript as those are the language I’m most familiar with, but if you want to help, you can send me these same functions in other programming languages, and I’ll gladly add them here.
Taking a function as an argument
To start, let’s build a very simple function, doOperation
which takes 3 arguments:
- The function operation
- number1
- number2
Additionally, we will create an operation called sumBothNumbers which will simply return the sum of 2 numbers.
The idea is that doOperation
would run the given operation function to both numbers and return the final result. The operation
input can by any function that takes two numbers and performs a calculation, such as calculating the sum of both numbers.
Returning a function
Next, we will build a higher-order function that returns a function. Our function will be called multiplyBy and it will take a number as an argument and return a function that will multiply its input by that number.
Building Filter(), Map() and Reduce()
We are getting pros at working with higher-order functions, and though it may still take some practice to find out good opportunities to use them, you are in great shape to work on some more complex implementations.
To level up our higher-order functions skills, we will write the code for some of the most popular array methods in the functional programming paradigm.
filter() aka filtering()
The filtering
function will have 2 parameters, an array
and a test
function. It will return a new array with all the elements that pass the test.
map() aka mapping()
The function mapping
will take 2 parameters: an array
and a transform
function, and it will return a new transformed array where each item is the result of the transform
function called over each element of the original array.
reduce() aka reducing()
The function reducing will take 3 parameters: a reducer function, an initial value for the accumulator and an array. For each item in the array, the reducer function is called, passing it to the accumulator and the current array element. The return value is assigned to the accumulator. After reducing all the items in the list, the accumulated value is returned.
FAQs
Conclusion
Next time when you get to that interview, or simply you see a pattern where a function is either returned or taken as a parameter, you will know we are dealing with higher-order functions.
Today for the first time, I’ve introduced an article covering more than one language. If you find it a great way to showcase and compare them, or if you think it was a terrible idea, please let me know in the comments or by Twitter . I’d love to hear your ideas.
Thanks so much for reading!
If you liked what you saw, please support my work!

Juan Cruz Martinez
Juan has made it his mission to help aspiring developers unlock their full potential. With over two decades of hands-on programming experience, he understands the challenges and rewards of learning to code. By providing accessible and engaging educational content, Juan has cultivated a community of learners who share their passion for coding. Leveraging his expertise and empathetic teaching approach, Juan has successfully guided countless students on their journey to becoming skilled developers, transforming lives through the power of technology.