React

Redux Quiz - The use of reducers

20.

How do reducers handle state changes and update the Redux store?

Reducers merge the previous state with the action payload to generate a new state.

Reducers directly mutate the previous state to incorporate the changes from the action.

Reducers update the store by creating a copy of the previous state and making modifications to the copy.

Reducers return a boolean value indicating success or failure of the state update.