Currying in Javascript | Understanding JS Interview Question

Publicado el: 09 enero 2022
en el canal de: Ashutosh Bhardwaj
568
18

Understanding Curry function in Javascript with a JS interview question example.

Hello everyone! My name is Ashutosh Bhardwaj. And in this video, we'll take a deep look at Currying in Javascript.

The functional programming paradigm has been gaining traction in the Javascript community for quite some time. It's hard to pinpoint when it all started, but I believe with the introduction of features like arrow functions, map, filter, reduce, etc., in ES6 (2015), we're seeing a lot more functional programming code in Javascript.
Therefore, it would be fair to say one might expect functional programming questions in a Javascript interview. For instance, let's take a look at the following problem statement:

Write a function that will provide the same output regardless of whether the arguments are passed all at once or one at a time(partially).
For example:
add3(1, 2, 3) // 6
add3(1)(2, 3) // 6
add3(1)(2)(3) // 6

No worries, in this video, we will learn how to implement such a function using functional programming concepts.

Chapters:
0:00 Intro
0:16 Problem statement
1:16 What is Currying
2:04 Coding environment
3:00 Building the solution
10:30 Final solution
15:00 Conclusion
15:28 Outro

Here is the CodeSandbox link to the final output: https://codesandbox.io/s/functional-p...


En esta página del sitio puede ver el video en línea Currying in Javascript | Understanding JS Interview Question de Duración hora minuto segunda en buena calidad , que subió el usuario Ashutosh Bhardwaj 09 enero 2022, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 568 veces y le gustó 18 a los espectadores. Disfruta viendo!