In Redux framework there is a store which maintain state of application (store is single source of truth). so the store is use throughout the application. all components share the store. So its very easy to have communication in between the components regardless of at what level component comes. As we have seen in previous post whenever we wants to change the state then we need to dispatch action. but updating store is not taken care by dispatching action only. we need to handled that dispatched action and do the update. As we have to maintain state as mutable we need a function which will be the pure function which will change the state and return new state. Yes, reducer is that function. We already defined reducer. "Reducer is pure function which alter the state of store and return the new state" So how can we write reducers in Angular Reducer function takes 2 parameters 1. State - current state of application 2. action - action to perform ...