Answers for "https://www.timeout js"

150

javascript settimeout

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

javascript setinterval

setInterval(function(){ 
	console.log("print this once every 3 second");
}, 3000);//run this thang every 3 seconds
Posted by: Guest on July-13-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language