React Easy technical 2 views 1 min read

Is useState Synchronous or Asynchronous?

Peer-reviewed by HireXTech Technical Panel • Updated for 2025/2026 hiring • Editorial standards
Practise this track
Interviewer Expectations for this Question
01
Core Competency

Assesses fundamental understanding of React conventions, runtime behavior, and memory/performance considerations.

02
Evaluation Criteria

Hiring managers look for precision, avoidance of ambiguous jargon, and ability to explain trade-offs under real production conditions.

Comprehensive Model Answer Verified Solution

The useState hook is synchronous, but state updates are asynchronous. When you call useState(), it runs synchronously and returns the state variable and setter function as tuple.

     const [count, setCount] = useState(0);
     

This happens immediately during rendering.
However, the state update function (setState) is asynchronous in the sense that it doesn't update the state immediately.
React batches updates and applies them before the next render. You won’t see the updated value immediately after calling setState.

Example:

     const [count, setCount] = useState(0);
    
     function handleClick() {
       setCount(count + 1);
       console.log(count); // ❗️Still logs the old value
     }
     

The > console.log(count) prints the old value, because the update hasn’t happened yet.

To see the updated state value, you can use useEffect() hook. It runs after the component has re-rendered.  By the time useEffect runs:

  • The component has been updated.
  • The state contains the new value.
        import React, { useState, useEffect } from 'react';

        function Counter() {
        const [count, setCount] = useState(0);
        
        const handleClick = () => {
        setCount(count + 1);
        console.log('Clicked count (old):', count); // Old value
        };
        
        useEffect(() => {
        console.log('Updated count:', count); // New value
        }, [count]); // Only runs when `count` changes
        
        return <button onClick={handleClick}>Count: {count}</button>;
        }
        

Candidate Response Strategy & Interview Tips

  1. Start with a concise one-sentence summary: Deliver a direct, confident answer first before expanding into nuances.
  2. Demonstrate real-world trade-offs: Discuss where this approach excels and when you would avoid it in production systems.
  3. Discuss complexity & edge cases: Proactively explain time/space complexity or boundary conditions (null values, scale limits).
  4. Prepare for interviewer follow-ups: Technical hiring panels frequently probe deeper into concurrency, backward compatibility, or alternative libraries.
Related Topics & Skills
Spotted an error or have an alternative solution?