You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><metahttp-equiv="X-UA-Compatible"content="IE=edge"><metaname="viewport"content="width=device-width, initial-scale=1.0"><title>Document</title></head><body><script>
function hello() {console.log('hello');}
function bye(){console.log('bye');}
function sleep(func, delay){constdelayUntil=Date.now()+delay;while(Date.now()<delayUntil);func();}
setTimeout(hello, 0);
setTimeout(bye, 1000);
sleep(() =>{console.log("sleep until 3sec")}, 3000);
sleep(() =>{console.log("sleep until 1sec")}, 1000);
</script></body></html>