Skip to main content
๐Ÿ› Bug HuntRX React Mediumโšก+20 XP

Stale Closure

The counter always shows 1, not the incremented value.

๐Ÿ› Find the bug
1const [n, setN] = useState(0);
2const inc = () => setN(n + 1);
๐Ÿ› The bug is on line 2

๐Ÿ”ง Select the correct fix: