Skip to content

Instantly share code, notes, and snippets.

@ljaviertovar
Last active May 18, 2022 01:23
Show Gist options
  • Save ljaviertovar/6583729ae8f2d290863fbe1c9696b2a6 to your computer and use it in GitHub Desktop.
Save ljaviertovar/6583729ae8f2d290863fbe1c9696b2a6 to your computer and use it in GitHub Desktop.
Cleaning up Timeout functions in React
useEffect(() => {
let timerId = setTimeout(() => {
// do something
timerId = null;
}, 3000);
// cleanup the timmer when component unmout
return () => clearTimeout(timerId);
}, []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment