Tiny Frontend Logo
Posts 0128

On This Page

JavaScript Currying

The first time I heard the term Currying was during a job interview preparation. Fortunately, the interviewer did not ask me any questions about it.

Do you know what currying is? This simple concept can greatly simplify our code logic.

What is Currying?

Currying is an advanced technique used with functions.

It transforms a function that takes multiple arguments (e.g., f(a, b, c)) into a series of functions that can be called one after another (e.g., f(a)(b)(c)).

Currying doesn't execute the function immediately; it merely transforms it.

Basic Example

Let's start with a simple example. Suppose we have a function sum(a, b) that adds two numbers.

In most cases, we directly call this method to obtain the result, like this:

function sum (a, b) {
  return a + b;
}

console.log(sum(4, 5)); // Output: 9

Now, let's change it to the currying approach:

function sum(a) {
  return function(b) {
    return a + b;
  };
}

console.log(sum(4)(5)); // Output: 9

In this example:

  1. The sum function takes the first number a as the parameter.
  2. It returns a new function that accepts b.
  3. The finally result will be caculated after the new function calling.
Subscribe to read the full content

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

Read Next

0127

FormData in JavaScript

The most common way of sending data to the server in a network request is by using a JSON object. But, in some cases, JSON maybe insufficient to transmit the data.

FormData in JavaScript
0126

HTTP Status Code for SEO

When a browser sends a request, the server responds with a corresponding HTTP status code, whether the request can be fulfilled or not.

HTTP Status Code for SEO
0125

Data Transfer with WebSocket

You're probably already familiar with using the HTTP protocol to retrieve data from servers. However, in addition to HTTP, browsers also provide another networking protocol to meet more advanced communication needs: WebSocket.

Data Transfer with WebSocket
0124

Permissions on a Webpage

Your website cannot readily use some services like camera, microphone, location, etc. on the user device. For security reasons, the websites need to specifically request for permissions from the user to use these services. In this post, let's learn how to handle these permissions on a webpage.

Permissions on a Webpage
0123

Network Requests in JavaScript

One of the crucial and fundamental component of a website is to make Network Requests to fetch some data. There are a lot of libraries available now, like axios, that make this task very easy to implement for the developers. But, if you've ever wondered what goes on underneath those libraries or if you want to achieve this using pure JavaScript, keep reading.

Network Requests in JavaScript
0122

Iterators and Generators in JavaScript

Let's discover some hidden gems and not so commonly used concepts in JavaScript. Iterators and Generators bring the concept of iteration directly into the core language and provide a mechanism for customizing the behavior of for...of loops.