how to use setinterval function in javascript code example
Example 1: settimeout javascript
setTimeout(function(){
console.log("hello");
}, 3000); //wait for atleast 3 seconds before console logging
Example 2: javascript setinterval
setInterval(function(){
console.log("Oooo Yeaaa!");
}, 2000);//run this thang every 2 seconds
Example 3: js settimeout
setTimeout(() => { alert('Hello') }, 1000)
Example 4: setinterval javascript
setInterval(function(){
console.log("Hello");
console.log("World");
}, 2000); //repeat every 2s