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.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *