settimeout delay code example
Example 1: javascript settimeout
setTimeout(function(){
alert("Sup!");
}, 2000);
Example 2: javascript set timeout
setTimeout(function(){
console.log("hello");
}, 3000);
Example 3: settimeout function
setTimeout(function(){
$('#overlay'). modal('hide')
}, 5000);
Example 4: js after settimeout
function doHomeWork(subject, callback){
setTimeout(callback,500);
console.log("doing my homework:", subject)
}
doHomeWork("Maths", function(){console.log("finished my homework");});