Answers for "react native set interval"

2

set interval react

useEffect(() => {
  const interval = setInterval(() => {
    console.log('This will run every second!');
  }, 1000);
  return () => clearInterval(interval);
}, []);
Posted by: Guest on June-23-2021
0

set interval react

timer: function() {
   var newCount = this.state.currentCount - 1;
   if(newCount >= 0) { 
       this.setState({ currentCount: newCount });
   } else {
       clearInterval(this.state.intervalId);
   }
},
Posted by: Guest on June-23-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language