Why does useEffect ignore the last element of the array?
P粉814160988
2023-08-14 18:21:42
<p>I am learning React, especially learning useEffect. </p>
<p>What I can't figure out is why useEffect skips the last element of the array. </p>
<p>Can someone kindly explain why and how to fix it? </p>
<pre class="brush:php;toolbar:false;">let users = ['Oliver', 'Thomas', 'George', 'William']
export default function App() {
const [index, setIndex] = useState(0);
console.log('RENDER');
useEffect(() => {
if (index === users.length - 1) {
return
}
setTimeout(() => setIndex(index => index 1), 2000)
console.log('Hello ' users[index]);
console.log('Side Effect RUNS!');
}, [users[index]])
}</pre>
<p><br /></p>
Your
useEffect
will not run becauseusers[index]
has the same valueChange it to
index