Why are Redux state functions called reducers?
- Because they reduce the state of the application
- Because they reduce the complexity of the application
- Because they reduce the size of the application
- Because they reduce the coupling between components
Redux state functions are called reducers because they take the current state of the application and an action as input, and return a new state as output. This process of reducing the state of the application is the core principle of Redux.
Loading...