DEV Community

Cover image for JS interview in 2 minutes / Currying πŸ₯˜
Nick K
Nick K

Posted on • Updated on

JS interview in 2 minutes / Currying πŸ₯˜

Question:
What is currying in JavaScript?

Quick answer:
It is a technique used to convert a function that takes multiple arguments into a chain of functions where every only takes one argument.

Longer answer:
Currying is basically all about Higher Order Functions. It is an application of JavaScript's ability to return functions from other functions.

We are replacing a function that takes n arguments with a set of n functions, which applied one by one gives exactly the same answer as original functions.

We can learn it by example right away. Btw it feels like this one is the most common one.

// regular implementation
function add1(a, b) {
  return a + b;
}

console.log(add1(2,5)) // 7

// curried implementation
function add2(a) {
  return function(b) {
    return a + b
  }
}

console.log(add2(2)(5)) // 7
Enter fullscreen mode Exit fullscreen mode

That is it. This is what currying is.

UPD: btw, also check out @kspeakman note about currying vs non-currying partial application in the comments section

Real-life applications:
At first glance, it may look a bit weird 🀯 Why do we ever need to call a function separating arguments?

You can think of it as a function preparation for execution. If you have some common operation, e.g. getting an object property, you can move it to a curried version.

function searchUser {
  // ...
  user['id']
  // ...
}

function updateUser {
  // ...
  user['id']
  // ...
}

// user['id'] can be refactored with
let getUserId = user => user['id']

// Or you can go even further and implement generic getter
let pluck = name => object => object[name]
let getUserId = pluck('id')
let getUserName = pluck('name')

let name = getUserName(user)
Enter fullscreen mode Exit fullscreen mode

So functions like this can be joined to some helpers library. And here is RxJS.pluck and here is Ramda.pluck.

Have a good curry πŸ₯˜

Resources:
wiki/Currying

Other posts:


Btw, I will post more fun stuff here and on Twitter. Let's be friends πŸ‘‹

Top comments (5)

Collapse
 
kspeakman profile image
Kasey Speakman

Currying is mainly a way to setup a function for easier partial application -- providing only some of the function arguments. You can do partial application without currying, but it is less convenient.

// currying partial application
let add = a => b => a + b
let add2 = add(2)
add2(7)
// 9

// non-currying partial application
let add = (a, b) => a + b
let add2 = b => add(2, b)
add2(7)
// 9
Enter fullscreen mode Exit fullscreen mode
Collapse
 
hexnickk profile image
Nick K

Thanks πŸ™ Added a note with a link to this comment to the post itself.

Collapse
 
chriskingwebdev profile image
ChrisKingWebDev

This is a great quick explanation. I made an account to follow you so I can get all the 2 minute interview reviews. Good stuff.

Collapse
 
hexnickk profile image
Nick K

It is so nice and inspiring to hear ✨ Glad you like these articles!

Collapse
 
siddharthshyniben profile image
Siddharth

This is actually wrong as a curried function can take any number of arguments, not just 1. Good explanation though πŸ‘