Full Stack Development β Important Questions and Answers
1. What is Virtual DOM in React? Virtual DOM is a lightweight copy of the real DOM used by React to improve performance. How it works: React creates a virtual DOM in memory Compares it with previous version (diffing) Updates only changed parts in real DOM Advantage: Faster updates Efficient rendering Improved performance 2. Explain Props in React with example. […]