InterviewSolution
Saved Bookmarks
| 1. |
What are reducers in angular 4? |
|
Answer» In Angular 4, a Reducer is a FUNCTION that specifies how a particular state changes in RESPONSE to an action/event. The function, without MAKING any itself making any changes to state, RETURNS a NEW state object with the updates included. |
|