settimeout javascript example
Example 1: javascript settimeout
setTimeout(function(){
alert("Sup!");
}, 2000);
Example 2: timeout javascript
setTimeout(function(){
}, 2000);
Example 3: javascript settimeout
setTimeout(function(){ alert("Hello"); }, 3000);
Example 4: js settimeout
setTimeout(() => { alert('Hello') }, 1000)
Example 5: javascript settimeout
setTimeout(function(){
console.log("hello");
}, 3000);
Example 6: javascript settimeout
window.setTimeout(()=>{
console.log('1 second passed!');
}, 1000);