Which of the following is NOT a core principle of Redux?
- Asynchronous actions.
- Changes made through pure functions.
- Immutable state.
- Single source of truth.
Redux follows several core principles, including immutable state, a single source of truth, and changes made through pure functions (reducers). Asynchronous actions, while commonly used with Redux, are not a core principle of Redux itself. They are more of a common practice when handling asynchronous operations in Redux applications.
Loading...
Related Quiz
- The method that provides detailed information about the error and the component stack where it happened is called ________.
- In styled-components, how can you pass props to your styles?
- Which of the following best describes the purpose of the render method in class components?
- Does React support all HTML attributes?
- Which TypeScript feature allows you to specify types for props and state in class components?