InterviewSolution
Saved Bookmarks
| 1. |
What are reducers in Redux's architecture? |
|
Answer» Reducers in Redux's architecture are PURE functions that are used to TAKE the previous state and an action and RETURN the NEXT state. Its syntax is given below: (previous_state, action) => new_state |
|