Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 314 Bytes

File metadata and controls

6 lines (5 loc) · 314 Bytes

How data mutates in a functional paradigm

In a functional paradigm, all data structures are immutable. So, how does the data itself mutate as it passes through the app flow? Data mutates when a new data structure is initialized with the return value of a function which took the old data as an argument.