React Keys Bug — Input Focus Lost on List Reorder
Prepend an item and the text cursor jumps to the wrong input.
20+ years shipping production code across the stack, with years spent interviewing engineers. Drawn from code that ran under real load.
- ✓Solid grasp of fundamentals
- ✓Comfortable reading code examples
- ✓Basic production concepts
- React renders UI declaratively: you describe state, React handles the DOM
- Reconciliation diffs the virtual DOM in O(n) using heuristics (element type + key)
- Hooks rules ensure consistent execution order across renders
- Controlled components store form state in React, uncontrolled in DOM refs
- Performance trap: inline arrow functions break memoisation via useCallback/React.memo
Think of React like a smart whiteboard in a classroom. Instead of erasing and redrawing everything every time something changes, it only erases and redraws the parts that actually changed. That's React's whole superpower — it's incredibly efficient about what it updates on screen. The 'rules' React has (like hooks rules and component structure) are just the whiteboard's instructions for how to keep track of what changed and why.
| Chrome | Firefox | Safari | Edge |
|---|---|---|---|
| ✓ | ✓ | ✓ | ✓ |
React is the most popular front-end library in the world right now, and that means every JavaScript developer eventually walks into an interview room and faces React questions. The problem isn't that these questions are hard — it's that most developers know HOW React works but can't explain WHY it works that way. Interviewers can smell the difference in about 30 seconds. If you can only recite syntax, you'll get filtered out. If you can explain the reasoning behind design decisions, you get the offer.
React solves the messy problem of keeping your UI in sync with your data. Before React, developers manually poked at the DOM and prayed nothing got out of sync. React introduced a declarative model: you describe what the UI should look like given your current state, and React figures out the most efficient way to make it happen. It's the difference between telling someone 'make the button red' versus giving them step-by-step painting instructions every single time.
By the end of this article you'll be able to answer questions about the virtual DOM, reconciliation, hooks rules, controlled vs uncontrolled components, and performance optimization — and more importantly, you'll understand the reasoning deeply enough to handle follow-up questions you've never seen before. That's what actually passes interviews.
What React Interview Questions Actually Test
React interview questions assess your understanding of React's core mechanics: component lifecycle, state management, and the virtual DOM diffing algorithm. They probe beyond syntax into how React reconciles UI updates efficiently. The key mechanic is the reconciliation process — when state or props change, React builds a new virtual DOM tree and diffs it against the previous one to determine minimal real DOM mutations. This is O(n) for typical trees due to heuristics like keyed list comparison.
In practice, the most critical property is the key prop on list elements. Keys allow React to match children across renders, preserving component identity and state. Without stable keys, React defaults to index-based matching, which breaks on reorder, insertion, or deletion — causing unnecessary unmounts and remounts. This is why input focus loss occurs: the component instance is destroyed and recreated, losing its internal state like cursor position.
Use stable, unique keys (like database IDs) for any dynamic list. This matters in real systems because it prevents subtle bugs in forms, drag-and-drop interfaces, and real-time feeds. A senior engineer must understand that keys are not just for performance — they are correctness requirements for component identity.
The Virtual DOM and Reconciliation: The Engine Under the Hood
The most common React interview question is 'What is the Virtual DOM?' but the follow-up 'How does reconciliation work?' is where most candidates stumble. React doesn't just refresh the page; it maintains a lightweight copy of the real DOM in memory. When state changes, React creates a new virtual tree and compares it (diffing) with the previous one.
Interviewers look for an understanding of the O(n) heuristic algorithm React uses. It assumes that two elements of different types will produce different trees and that a 'key' prop helps identify which elements are stable across renders. This prevents unnecessary re-renders and keep the UI snappy.
Hooks Rules: Why They Exist and What Breaks When You Break Them
React hooks enforce two rules: only call hooks at the top level, and only call them from React functions (components or custom hooks). The 'why' is critical for interviews. Under the hood, React relies on the order of hook calls between renders to maintain state and effect references. If you conditionally call a hook, the number of hooks changes between renders, and React's internal list of hook states gets misaligned — leading to bugs like stale state or skipped effects.
Mid-level developers can recite the rules; senior developers explain the linked-list based hook storage mechanism. React stores hooks for a component as a linked list where each hook's pointer depends on the call order. Conditional calls break the order, corrupting the list.
Controlled vs Uncontrolled Components: The Production Reality
In interviews, you'll be asked the difference between controlled and uncontrolled components. Controlled components keep form state in React state (single source of truth). Uncontrolled components store form data in the DOM itself, and you access it via refs when needed (e.g., form submission). The choice matters for validation, real-time UI updates, and testability.
Most mid-level devs can define both. Senior devs discuss the tradeoffs: controlled components give you full control but cause a re-render on every keystroke (fine for most forms). Uncontrolled components are lighter but harder to react to changes. In production, you'll use controlled for most inputs, uncontrolled for file inputs or when you need to integrate with non-React code.
- Controlled: value + onChange === React is the sole source of truth.
- Uncontrolled: defaultValue + ref === DOM holds the current value, React only reads when needed.
- When you need to react to every change (e.g., live validation) → controlled.
- When you only need the value at submit (e.g., password) → uncontrolled is simpler.
- File inputs are always uncontrolled — you can't set the file path via state.
useEffect and Lifecycle: The Cleanup Trap
useEffect is the gateway to side effects in React components. It replaces componentDidMount, componentDidUpdate, and componentWillUnmount — but with a functional twist. The function passed to useEffect runs after every render by default, unless you specify a dependency array. The cleanup function returned from the effect runs before the effect re-runs and on unmount.
Interviewers probe for understanding of the dependency array and cleanup. Common pitfalls: missing dependencies causing stale closures, omitting cleanup leading to memory leaks (e.g., subscriptions or timers).
Performance Optimisation: memo, useMemo, useCallback
React's reconciliation is fast, but unnecessary re-renders drag down performance in complex apps. The interview topic: when and how to prevent wasteful re-renders. React.memo wraps a component to skip re-render if props haven't changed (shallow comparison). useMemo memoises expensive computation results. useCallback memoises callback functions to maintain referential stability across renders.
Interviewers like to see that you understand when NOT to use these tools. Over-optimisation can make code harder to debug and even hurt performance by holding onto large memoised objects. The key is: only memoise when you've measured a re-render bottleneck.
How Does React Actually Work? (The Bits That Matter in Production)
Interviews love this question because it's the difference between someone who read a tutorial and someone who's debugged a render loop at 2 AM.
React works because it doesn't touch the real DOM until it absolutely has to. Your components return JSX, which Babel compiles into React.createElement() calls. Those create a tree of plain JavaScript objects — the Virtual DOM. When state changes, React builds a new tree, diffs it against the previous one (reconciliation), and computes the minimal set of DOM mutations.
The key insight: reconciliation isn't free. The algorithm is O(n) based on heuristics — same position in the tree? Reuse. Different type? Tear down and rebuild. That's why key props matter. Slap a random index on a list and React will re-render every child when you delete the first item. Use a stable ID and it skips the entire subtree.
One-way data flow isn't a philosophy — it's a constraint that makes your life easier. Data goes down via props, events come back up via callbacks. No magic two-way binding, no surprise mutations. Predictable state changes mean predictable bugs.
index as key in a sortable/filterable list will cause stale state bugs and unnecessary re-renders. Always use unique, stable identifiers.JSX: The Syntax Your Interviewer Expects You to Actually Understand
JSX isn't HTML. It's syntactic sugar for React.createElement(type, props, ...children). Every interview question about JSX is really asking: do you understand the compilation step, or do you think React runs raw HTML?
When you write <div className="card">Hello</div>, Babel turns it into: React.createElement('div', { className: 'card' }, 'Hello')
That className is a dead giveaway — JSX uses the DOM API property names, not HTML attributes. htmlFor instead of for, tabIndex instead of tabindex. These catch people who never read the compiled output.
The {} for JavaScript expressions is because JSX is just function calls. Anything inside those braces must be an expression — not a statement. You can't write if inside JSX. You use ternary or logical &&. That's not a design choice, it's the compiler screaming at you.
Strings in JSX are auto-escaped against XSS. Raw HTML requires dangerouslySetInnerHTML — and yes, the name is intentionally ugly. Don't use it unless you've sanitized the input server-side.
class → className, for → htmlFor, tabindex → tabIndex. Interviewers watch for these slip-ups.Components: Functions That Return UI (And Nothing Else)
A React component is a function that takes props and returns JSX. That's it. The entire "component architecture" hype boils down to: compose small functions into larger ones. Class components were the old way — stateful, lifecycle-heavy, and verbose. Functional components with hooks are the present.
The difference matters in interviews. Class components have this, lifecycle methods, and more boilerplate. Functional components have hooks and no this confusion. But the real question is: why do functional components outperform class components in production?
Functional components are lighter. No this binding overhead. No instance creation. Hooks let you colocate state and effects without scattering logic across lifecycle methods. A class component needs componentDidMount, componentDidUpdate, and componentWillUnmount to handle side effects. A functional component uses one useEffect with a cleanup function.
Interviewers ask this to see if you've shipped both patterns. Say you prefer functional — then explain why: less code, easier testing, better tree-shaking. Class components aren't going anywhere in legacy codebases, but you wouldn't start a new one with them.
When should you use Redux over Context API?
Redux and Context API both solve state sharing. They are not interchangeable. Context is a dependency injection mechanism, not a state manager. When a value changes, every consumer re-renders. That's fine for theme or locale. It's a disaster for a shopping cart with 500 items.
Redux gives you granular subscriptions. Only components that depend on specific slices of state re-render. It also enforces a unidirectional data flow with reducers, which makes debugging and testing predictable. You don't reach for Redux because you have global state. You reach for Redux because you have complex state transitions, middleware needs, or performance requirements that Context can't meet.
Production rule: if your state changes less than once per second and affects fewer than 10 components, Context is fine. If those numbers climb, or if you need time-travel debugging, pick Redux.
How would you optimize a slow React application?
Before touching a single line of code, profile. Use React DevTools Profiler and browser Performance tab. Find the bottleneck. Is it mounting, re-rendering, or network? The answer changes your strategy.
If re-renders are the culprit, start with React.memo on pure presentational components. Then check if useCallback and useMemo actually help — they add overhead. Only use them when you pass props to memoized children or when a calculation costs more than a render.
For list-heavy UIs, virtualize. react-window or react-virtuoso render only what's visible. For large forms, isolate field state so one keystroke doesn't re-render the entire form. For images, lazy load and use modern formats like WebP.
Network optimization is worth more than micro-optimizations: code-split with React.lazy and Suspense, compress assets, cache API responses. The fastest render is the one you skip entirely.
React Server Components: The New Mental Model
React Server Components (RSC) represent a paradigm shift in how we build React applications. Unlike traditional client-side rendering where all components run in the browser, RSC allow components to execute on the server, sending only the resulting HTML to the client. This reduces bundle size and improves performance by offloading heavy computations and data fetching to the server.
Consider a blog post component that fetches data and renders markdown. In a client-side approach, you'd use useEffect to fetch data, which adds latency and a loading state. With RSC, the component runs on the server, fetches data directly (e.g., from a database), and renders the final HTML. The client receives a fully rendered page with no JavaScript for that component.
Example: A server component that fetches and renders a list of posts. It uses async/await directly, no hooks needed. The client never sees the fetch logic or loading state.
However, RSC cannot use state or effects. They are pure rendering functions that run once on the server. For interactivity, you combine them with client components (marked with 'use client'). This mental model requires thinking about where code executes: server for data fetching and static rendering, client for interactivity.
Key differences: Server components can access backend resources directly (database, file system) without exposing secrets. They reduce client-side JavaScript, improving load times. But they also introduce new patterns like streaming and suspense for loading states.
In production, RSC are ideal for content-heavy sites (blogs, e-commerce) where most UI is static or data-driven. They work seamlessly with Next.js App Router, but can be used standalone with React 19.
React 19 Features: use(), Actions, Server Components
React 19 introduces several groundbreaking features that simplify data fetching and form handling. The new use() hook allows reading resources like promises or context directly in render, without wrapping in useEffect. For example, const data = use(fetchData()) suspends the component until the promise resolves, enabling a cleaner data-fetching pattern.
Actions are a new way to handle form submissions and mutations. Instead of manually managing loading states and error handling, Actions provide a declarative API. Example: where submitAction is an async function. React automatically manages pending states, optimistic updates, and error boundaries.
Server Components (RSC) are now stable in React 19, allowing components to run exclusively on the server. Combined with Actions, you can build full-stack features without client-side JavaScript for data mutations.
Example: A form that creates a new user. With Actions, you define an async function that calls your API, and React handles the form state. The useActionState hook (formerly useFormState) provides pending and error states.
These features reduce boilerplate and improve performance by moving logic to the server. However, they require a new mental model: think in terms of server vs client boundaries.
In production, start using Actions for all forms and mutations. They integrate with Server Components for seamless full-stack experiences. The hook is ideal for data fetching in client components that need to suspend.use()
use() for data fetching in client components that need suspense.use() hook and Actions simplify data fetching and form handling, reducing boilerplate and improving developer experience.State Management in 2026: useReducer, Zustand, TanStack Query
State management in React has evolved beyond Redux. In 2026, the go-to solutions are built-in hooks like useReducer, lightweight libraries like Zustand, and server-state tools like TanStack Query (formerly React Query).
useReducer is ideal for complex local state with multiple sub-values or when the next state depends on the previous one. Example: a shopping cart with add/remove items. It's simple, no external dependencies, and works well with Context for sharing state across components.
Zustand is a minimal state management library that provides a global store with a hook-like API. It's simpler than Redux, with no boilerplate, and supports middleware like persist. Example: a user preferences store that persists to localStorage.
TanStack Query handles server state (data from APIs) by managing caching, background refetching, and optimistic updates. It replaces most use cases for Redux or Context for async data. Example: fetching a list of products with automatic cache invalidation.
When to use what? Use useReducer for component-local complex state. Use Zustand for global client state (theme, auth). Use TanStack Query for server state (API data). Avoid Redux unless you have very complex global state logic or need middleware.
In production, a typical stack: TanStack Query for data fetching, Zustand for UI state, and useReducer for form state. This combination is lightweight, performant, and easy to maintain.
List Reordering Broke Input Focus: The Hidden Key Bug
- Never use array index as key if the list order can change (insert, delete, sort).
- Stable ID-based keys preserve component state across re-renders.
- React's reconciliation relies on keys to match previous component instances to current data.
console.log('key:', key) in render to see current keysgit grep 'key={index}' to find all index-based keys| File | Command / Code | Purpose |
|---|---|---|
| io | /** | The Virtual DOM and Reconciliation |
| io | /** | Hooks Rules |
| io | /** | Controlled vs Uncontrolled Components |
| io | /** | useEffect and Lifecycle |
| io | /** | Performance Optimisation |
| ReconciliationPitfall.py | function OrderList({ orders }) { | How Does React Actually Work? (The Bits That Matter in Produ |
| JSXCompilation.py | function Greeting({ user }) { | JSX |
| ClassVsFunction.py | class UserProfile extends React.Component { | Components |
| WhenContextHurts.tsx | const CartContext = React.createContext(); | When should you use Redux over Context API? |
| ProfileFirst.tsx | function SearchPage() { | How would you optimize a slow React application? |
| BlogPost.server.js | export default async function BlogPost({ id }) { | React Server Components |
| UserForm.jsx | async function createUser(prevState, formData) { | React 19 Features |
| store.js | export const useStore = create( | State Management in 2026 |
Key takeaways
Interview Questions on This Topic
What is the virtual DOM and how does it differ from the real DOM?
Frequently Asked Questions
20+ years shipping production code across the stack, with years spent interviewing engineers. Drawn from code that ran under real load.
That's JavaScript Interview. Mark it forged?
9 min read · try the examples if you haven't