Hello World...

await setTimeout 본문

javascript

await setTimeout

FaustK 2023. 7. 14. 09:44

setTimeout 을 동기적으로 활용하고 싶을 때가 있다.

await setTimeout 이런식으로 사용하면 원하는대로 작동하지 않는다.

아래와 같이 Promise 를 활용해야 한다.

 

https://dev.to/francisprovost/await-a-settimeout-1fje

 

Await a setTimeout

Use the async/await syntax with setTimeout

dev.to

 

const wait = (timeToDelay) => new Promise((resolve) => setTimeout(resolve, timeToDelay));
await wait(3000); // 3초 기다린 후 아래 코드 실행
...
Comments