Answers for "settimeout function in typescript"

150

javascript settimeout

setTimeout(function(){
 	alert("Sup!"); 
}, 2000);//wait 2 seconds
Posted by: Guest on June-27-2019
3

timeout typescript

setTimeout(() => {
  console.log('hi');
}, 500);
Posted by: Guest on October-28-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language