Answers for "node js wait 5 sec"

1

javascript wait 5 sec

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

js wait 5 second

function sleep(num) {
	let now = new Date();
	const stop = now.getTime() + num;
	while(true) {
		now = new Date();
		if(now.getTime() > stop) return;
	}
}

sleep(1000)
console.log('delay 1 second');
Posted by: Guest on March-07-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language