Which of the following is a built-in feature of Redux but not inherently provided by the Context API?
- Component props.
- Middleware support.
- State management.
- Time-travel debugging.
Middleware support is a built-in feature of Redux but not inherently provided by the Context API. Middleware allows you to extend Redux's behavior, enabling tasks like logging, asynchronous actions, and more. While Context API can manage state, it doesn't include middleware support for such additional functionality.
Loading...
Related Quiz
- When adding charts to a React application, the technique that ensures minimal redraws and re-renders for dynamic data is known as ________.
- To optimize large lists in React, you can use a technique called ______ rendering.
- How can you ensure a functional component re-renders only when certain props change?
- In a class component, you noticed that a child component re-renders unnecessarily even when its props don't change. Which method can be used to prevent the unnecessary re-renders related to state changes?
- You're building an application where certain operations should only be performed when specific observable properties change. How would you set up a reaction that specifically listens to these properties in MobX?