React

Redux Quiz - Reducer default case

25.

What is the purpose of the default case in a reducer?

The default case indicates that the reducer does not require any further action.

The default case is responsible for updating the state based on specific conditions.

The default case is triggered when an unknown action type is dispatched.

The default case is used to define the initial state of the reducer.