Answers for "wait 5 second inn javasc"

2

javascript wait 5 sec

function stateChange(newState) {
    setTimeout(function () {
        if (newState == -1) {
            alert('VIDEO HAS STOPPED');
        }
    }, 5000);
}
Posted by: Guest on January-21-2021
3

javascript wait 1 second

setTimeout(function(){ 
    console.log("Ready")
}, 1000);
Posted by: Guest on November-11-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language