How to run (Execute) a function after N seconds in JavaScript

1 Answer

0 votes
setTimeout(f, 3000); // 3 seconds  
 
function f() {         
    console.log("f() in running after 3 seconds");      
}    
 
   
/*
run:
   
f() in running after 3 seconds
          
*/

 



answered Jun 3, 2019 by avibootz
edited Oct 12, 2024 by avibootz
...