Answers for "show function for starting 1 second in javascript"

0

javascript run something after x seconds

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

how to do a function after a set interval js

function sayHi() {
  alert('Hello');
}
//Do a function at a set interval continuously
setTimeout(sayHi, 1000);
//Do a function once after a set interval
setTimeout(sayHi, 1000);
Posted by: Guest on October-15-2020

Code answers related to "show function for starting 1 second in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language