Answers for "how to make a function run for 3 seconds javascript"

2

javascript run something after x seconds

setTimeout(function(){
  location.reload();
}, 3000); //run this after 3 seconds
Posted by: Guest on August-07-2020
3

javascript run every 5 seconds

const interval = setInterval(function() {
   // method to be executed;
 }, 5000);

clearInterval(interval); // thanks @Luca D'Amico
Posted by: Guest on September-27-2020

Code answers related to "how to make a function run for 3 seconds javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language