JavaScript: Perform left-to-right function composition
JavaScript fundamental (ES6 Syntax): Exercise-67 with Solution
Write a JavaScript program to perform left-to-right function composition.
- Use Array.prototype.reduce() to perform left-to-right function composition.
- The first (leftmost) function can accept one or more arguments; the remaining functions must be unary.
Sample Solution:
JavaScript Code:
//#Source https://bit.ly/2neWfJ2
const composeRight = (...fns) => fns.reduce((f, g) => (...args) => g(f(...args)));
const add = (x, y) => x + y;
const square = x => x * x;
const addAndSquare = composeRight(add, square);
console.log(addAndSquare(1, 2));
console.log(addAndSquare(3, 2));
Sample Output:
9 25
Pictorial Presentation:
Flowchart:

Live Demo:
See the Pen javascript-basic-exercise-67-1 by w3resource (@w3resource) on CodePen.
Improve this sample solution and post your code through Disqus
Previous: Write a JavaScript program to perform right-to-left function composition.
Next: Write a JavaScript program that accepts a converging function and a list of branching functions and returns a function that applies each branching function to the arguments and the results of the branching functions are passed as arguments to the converging function.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join