Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,026 questions

51,982 answers

573 users

How to create delay in TypeScript

3 Answers

0 votes
function delay(sec: number) {
    let msec: number = sec * 1000;
    let start: number = new Date().getTime();
    
    for (let i: number = 0; i < 1e9; i++)  {
        if ((new Date().getTime() - start) > msec) {
            break;
        }
    }
}
 
console.log("abc");
 
delay(3);
 
console.log("xyz");
  
  
  
  
/*
run:
    
"abc" 
"xyz" 
    
*/

 



answered Mar 29, 2024 by avibootz
0 votes
const delay: number = 3;
  
setTimeout(function() {
  console.log("abc");
}, delay * 1000); // 3 sec
  
  
  
/*
run:
    
"abc" 
    
*/

 



answered Mar 29, 2024 by avibootz
0 votes
function f() {
    console.log("abc");
}
 
setTimeout(f, 4 * 1000); // 4 sec
 
   
   
   
/*
run:
     
"abc" 
 
*/

 



answered Mar 29, 2024 by avibootz

Related questions

1 answer 97 views
1 answer 89 views
3 answers 157 views
157 views asked Mar 29, 2024 by avibootz
3 answers 255 views
255 views asked Jul 12, 2015 by avibootz
2 answers 391 views
391 views asked Jul 11, 2015 by avibootz
1 answer 154 views
154 views asked Jul 11, 2015 by avibootz
1 answer 175 views
175 views asked Jul 11, 2015 by avibootz
...