Menu

Post image 1
Post image 2
Post image 3
Post image 4
Post image 5
Post image 6
1 / 6
0

How React Works (Part 5)? The React Lifecycle From the Inside: When Things Actually Run

DEV Community·Sam Abaasi·about 1 month ago
#t4Pjnwi8
#react#javascript#hooks#useeffect#effect#runs
Reading 0:00
15s threshold

The React Lifecycle From the Inside: When Things Actually Run Series: How React Works Under the Hood Part 1: Motivation Behind React Fiber: Time Slicing & Suspense Part 2: Why React Had to Build Its Own Execution Engine Part 3: How React Finds What Actually Changed Part 4: The Idea That Makes Suspense Possible Prerequisites: Read Parts 1–4 first. A Puzzle Most React Developers Get Wrong Quick quiz. What order do these log? function App () { useLayoutEffect (() => { console . log ( ' layout effect ' ); }); useEffect (() => { console . log ( ' effect ' ); }); console . log ( ' render ' ); return < div />; } Enter fullscreen mode Exit fullscreen mode Most people guess: render → effect → layout effect, or render → layout effect → effect. The answer is: render → layout effect → effect. But more importantly — why? Why does useLayoutEffect run before useEffect ? Why does useEffect run at all after the component already returned?…

Continue reading — create a free account

Join HashtagPLUS to read full articles, follow hashtags, vote, and join the conversation.

Read More