wait 3 sec js code example
Example 1: javascript wait 5 sec
function stateChange(newState) {
setTimeout(function () {
if (newState == -1) {
alert('VIDEO HAS STOPPED');
}
}, 5000);
}
Example 2: js timer wait before functoin
//code before the pause
setTimeout(function(){
//do what you need here
}, 2000);
Example 3: javascript wait 10 seconds
setTimeout(function () {
// ...
}, 10000);
// or
.then(() => {
// ...
({ timeout: 10000 });
});
Example 4: javascript wait 5 seconds
timeout(ms) { //pass a time in milliseconds to this function
return new Promise(resolve => setTimeout(resolve, ms));
}