Skip to content

Instantly share code, notes, and snippets.

@swkim109
Created September 7, 2022 00:55
Show Gist options
  • Save swkim109/8e6d9b62d38117d04c0de61ddac0b57b to your computer and use it in GitHub Desktop.
Save swkim109/8e6d9b62d38117d04c0de61ddac0b57b to your computer and use it in GitHub Desktop.
Timer
const timer = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
(async () => {
await timer(5000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment