Back to All Topics
React Updated 2026-04-01 50 Questions

React Interview Questions

Reconciliation is the process through which React updates the DOM. In Fiber, this is divided into two phases:

  • Render Phase: Asynchronous and interruptible. React identifies changes by comparing the current tree with the new one (diffing).
  • Commit Phase: Synchronous and uninterruptible. React applies the changes to the real DOM.