What is in React 18?
What are the key features of React?
What are React hooks?
React hooks are functions that let you use state and enable functional components to have state and lifecycle features previously available only in class components.
What is Virtual DOM?
The Virtual DOM (VDOM) is an in-memory representation of Real DOM. The representation of a UI is kept in memory and synced with the “real” DOM. It’s a step that happens between the render function being called and the displaying of elements on the screen. This entire process is called reconciliation.
What is Redux?
Redux is a state container for JavaScript applications, commonly used with libraries like React or Angular for managing application state in a more organized and predictable way.
What are key concepts in Redux?
Why use Redux?
What is Redux-Saga?
A middleware library for Redux that helps manage side effects (such as asynchronous tasks like data fetching and impure operations) in a Redux application