Question 7 of 10Pro Only
What is Redux middleware, and how does it work? Compare Redux Thunk with Redux Saga for handling asynchronous operations.
Sample answer preview
## What Is Redux Middleware? Middleware provides a way to intercept actions before they reach the reducer. It sits between dispatching an action and the reducer processing it. ``` Action → Middleware → Middleware → ...
middlewareRedux ThunkRedux Sagageneratorasyncside effects