md`# Function Composition
Prompt: Create a javascript function which takes in a bunch of function as arguments and performs left to right composition on them. It then returns the result from a function which takes in a single argument on which it performs the composition.
## Approach 1: Currying and closures
`