wait for 5 seconds in javascript code example
Example 1: javascript wait 5 sec
function stateChange(newState) {
setTimeout(function () {
if (newState == -1) {
alert('VIDEO HAS STOPPED');
}
}, 5000);
}
Example 2: javascript wait 1 second
setTimeout(function(){
console.log("Ready")
}, 1000);
Example 3: js wait for time
function sleep(milliseconds) {
const start = Date.now();
while (Date.now() - start < milliseconds);
}
console.log("Hello");
sleep(2000);
console.log("World!");
Example 4: javascript wait 10 seconds
setTimeout(function () {
}, 10000);
.then(() => {
({ timeout: 10000 });
});
Example 5: javascript wait 5 seconds
timeout(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}