settime out function code example
Example 1: javascript settimeout
setTimeout(function(){
alert("Sup!");
}, 2000);
Example 2: javascript settimeout
setTimeout(function(){ alert("Hello"); }, 3000);
Example 3: js settimeout
setTimeout(() => { alert('Hello') }, 1000)
Example 4: settimeout function
setTimeout(function(){
$('#overlay'). modal('hide')
}, 5000);
Example 5: js after settimeout
function doHomeWork(subject, callback){
setTimeout(callback,500);
console.log("doing my homework:", subject)
}
doHomeWork("Maths", function(){console.log("finished my homework");});
Example 6: javascript this in settimeout
function func() {
this.var = 5;
this.changeVar = function() {
setTimeout(() => {
this.var = 10;
}, 1000);
}
}
var a = new func();
a.changeVar();