DEV Community

Cover image for Higher order functions and closures example in Javascript
Adrian Matei for Codever

Posted on • Updated on • Originally published at codever.dev

Higher order functions and closures example in Javascript

First with "normal" functions:

//closures and higher order function
function salute(salutation) {
  return function(firstName) {
    return function(lastName) {
      console.log(`hi ${salutation} ${firstName} ${lastName}`)
    }
  }
}

salute('Mr.')('John')('Wick')

//output
hi Mr. John Wick

Enter fullscreen mode Exit fullscreen mode

The shorter variant with arrow functions:

const saluteArrowFunction = (salutation) => (firstName) => (lastName) => console.log(`hi ${salutation} ${firstName} ${lastName}`);

saluteArrowFunction ('Mr.')('Johnny')('Cage')

//output
hi Mr. Johnny Cage
Enter fullscreen mode Exit fullscreen mode


Learn more about:

Shared with ❤️ from Codever.   👉   use the copy to mine functionality to add it to your personal snippets collection.

Top comments (0)