Loading video...
Video Failed to Load
"Why can't I access an updated state value in React immediately?"
142,247 views • 3 years ago •via X (Twitter)
9 Comments

Alex Sidorenko3 years ago
Because it's not how React works. Updating a state in React triggers a new render (React calls your component function again with a new state). You can access the updated state variable during this new render.

Shyam Makwana3 years ago
Other solution is to use callback function like:

Neo 🍍🍍3 years ago
There’s a callback on setState if you need it immediately

Bilal Tamerhoulet 🇩🇿 🇵🇸3 years ago
State updates are asynchronous

harpaljadeja.eth (evm/acc) 🇮🇳3 years ago
So what's the solution?

🦭x3 years ago
Closure

Eberechi3 years ago
React batches changes and updates only after the whole function is done running. Hence a log immediately after changing set only had access to the initial state.

nadim3 years ago
What are you using to create this awesome code animation?

Claudio3 years ago
Nice content mate, but it never ceases to amaze me how weirdly architected React is.
