Quick recall mode

Keywords first, details second.

Use this mode when you want memory triggers only: title, summary, tags, and bullet anchors without long answers getting in the way.

Clear

Results update as you type. Press / to jump straight into search.

Quick recall

374 cards

React Easy Theory

Lists and keys in React

React uses keys to identify list items across renders so reconciliation can preserve identity correctly.

  • Keys must be stable and unique within the list
  • Indexes can break identity when order changes
  • Keys affect correctness as well as performance
React Easy Theory

Must-have React interview questions

The must-know React interview set revolves around React basics, JSX, props, state, hooks, keys, reconciliation, Context, Redux, routing, data fetching, lazy loading, Suspense, error boundaries, StrictMode, SSR vs CSR, hydration, and performance.

  • Know the definitions first
  • Know the trade-offs second
  • Tie answers back to real component behavior