Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 384 Bytes

function-composition.md

File metadata and controls

5 lines (3 loc) · 384 Bytes

What is Function Composition?

"Function Composition" is applying one function to the results of another: The result of f() is sent through g() It is written: (g º f)(x).

Function composition is the process of combining two or more functions to produce a new function. Composing functions together is like snapping together a series of pipes for our data to flow through.