setTimeout() js code example
Example 1: javascript settimeout
setTimeout(function(){
alert("Sup!");
}, 2000);
Example 2: settimeout
setTimeout(() => {
}, 5000);
Example 3: set timeout javascript
setTimeout( () => {
alert("J'aime les chats");
}, 2000);
Example 4: javascript set timeout
setTimeout(function(){
console.log("hello");
}, 3000);
Example 5: javascript settimeout
var timeoutID;
function delayedAlert() {
timeoutID = window.setTimeout(window.alert, 2*1000, 'That was really slow!');
}
function clearAlert() {
window.clearTimeout(timeoutID);
}