DEV Community

Discussion on: An introduction to the basic principles of Functional Programming

Collapse
 
teekay profile image
TK

Exactly!

Pure functions + immutability helps a lot to compose functions (or in your words "chain function calls"). And software is all about solving small parts and compose all "solutions" to solve the complex problem (bigger problem).

I will definitely write a separate post about composition!

Collapse
 
somedood profile image
Basti Ortiz

Looking forward to it! I'd love to see the different ways to compose functions.