Skip to content

Instantly share code, notes, and snippets.

@0xtlt
Created April 14, 2021 12:12
Show Gist options
  • Save 0xtlt/640810511178b0893f8795df6ceee865 to your computer and use it in GitHub Desktop.
Save 0xtlt/640810511178b0893f8795df6ceee865 to your computer and use it in GitHub Desktop.
Wait function in JS
async function Wait(time) {
return new Promise(resolve => {
setTimeout(resolve, time);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment