Implement Infinite Currying Sum: JavaScript Interview Question sum(1)(2)(3)
In this post, we will going to cover the step-by-step implementation of Infinite Currying Sum with a code example. This is one of the most common JavaScript Interview questions.
Anuj Sharma
Last Updated Feb 21, 2026

Infinite currying sum and multiplication are one of the best examples to check the understanding of currying and its implementation to generate partial functions. In this post, we will going to cover the infinite currying sum implementation.
Table of Contents
Implementing Infinite Currying Sum
Let's start by implementing a function that can take any number of arguments and return the sum of all those arguments. We will use currying to achieve this.
Step 1: Define the Base Function
function sum(...args) {
return args.reduce((acc, val) => acc + val, 0);
}
The above function takes any number of arguments using the rest parameter syntax (...args) and uses the reduce method to sum them up.
Step 2: Implement Currying
function curry(func) {
return function curried(...args) {
if (args.length >= func.length) {
return func(...args);
} else {
return function (...nextArgs) {
return curried(...args, ...nextArgs);
};
}
};
}
const curriedSum = curry(sum);
In the curry function, we check if the number of arguments passed is equal to or greater than the number of arguments expected by the sum function. If not, we return a new function that takes the remaining arguments. This process continues until all arguments are collected and the sum is calculated.
Step 3: Using Infinite Currying
console.log(curriedSum(1)(2)(3)()); // Output: 6
console.log(curriedSum(5)(10)(15)(20)()); // Output: 50
By invoking the <code>curriedSum</code> function with a series of arguments followed by an empty function call, we can achieve infinite currying and calculate the sum of all the arguments provided.
Real-World Example
Let's consider a real-world scenario where currying can be useful. Suppose in the e-commerce application, we have a function that calculates the total price of a shopping cart with discounts applied based on the customer's membership level:
function calculateTotalPrice(discount) {
return function (price) {
return price - price * discount;
};
}
const standardMemberPrice = calculateTotalPrice(0.1);
const premiumMemberPrice = calculateTotalPrice(0.2);
console.log(standardMemberPrice(100)); // Output: 90
console.log(premiumMemberPrice(100)); // Output: 80
In this example, the calculateTotalPrice function returns a new function that calculates the final price after applying the discount based on the membership level. This demonstrates how currying can be used to create specialized versions of a generic function.
Final Thoughts
Implementing infinite currying in JavaScript can be a powerful technique to create flexible and reusable functions. By breaking down functions into smaller units that can be partially applied, developers can achieve more expressive and concise code.
Understanding currying is not only important for technical interviews but also for writing clean and maintainable code in frontend development.
Learn Next
A seasoned Sr. Engineering Manager at GoDaddy (Ex-Dell) with over 12+ years of experience in the frontend technologies. A frontend tech enthusiast passionate building SaaS application to solve problem. Know more about me š
Learn Next
Comments
Be the first to share your thoughts!
No comments yet.
Start the conversation!
Share your expertise
Publish a blog or quick notes on topics you know well ā your write-up could be the answer someone needs before their next frontend interview.
Build your portfolio
Help the community
Sharpen your skills
Earn goodies
Other Related Blogs
Implement Infinite Currying Multiplication in JavaScript: mul(2)(3)(4)
Anuj Sharma
Last Updated Feb 21, 2026
Understand the step-by-step implementation of Infinite Currying Multiplication in JavaScript with a code example.
How to convert HEX to RGB in JavaScript
Anuj Sharma
Last Updated Jul 6, 2026
A quick way to convert HEX to RGB in JavaScript that will help to do the CSS HEX to RGB color conversion programmatically.
How to convert RGB to HEX in JavaScript
Anuj Sharma
Last Updated Jul 6, 2026
A quick way to convert RGB to HEX in JavaScript that will help to do the CSS RGB to HEX color conversion programmatically
Understand Debouncing in JavaScript with Examples
Anuj Sharma
Last Updated Jun 27, 2026
Understand the concept of Debouncing in JavaScript to improve the performance of your web application and optimize the event handling in JavaScript, by limiting API calls or DOM events.
Implement JSON Parse polyfill in JavaScript
Anuj Sharma
Last Updated Jun 15, 2026
Explore the code implementation of JSON Parse Polyfill in JavaScript that can parse a string into valid JSON.
Implement JSON Stringify Polyfill in JavaScript
Anuj Sharma
Last Updated Jun 15, 2026
Explore the detailed explanation of the JSON Stringify Polyfill implementation in JavaScript to prepare for the frontend interviews.
What is javascript:void(0) and How it Works?
Anuj Sharma
Last Updated Jun 15, 2026
A comprehensive explanation about using javascript:void(0) in javascript. When to use javascript:void(0) and how it works with examples of using it with anchor tag.
Understand JavaScript Date Object with Examples (for JavaScript Interviews)
Anuj Sharma
Last Updated Jun 15, 2026
Go through different ways to display dates using javascript date object. It covers examples of date object usage to understand the main concepts of javascript date object.
