Skip to content

Instantly share code, notes, and snippets.

@growupanand
Created December 23, 2023 20:01
Show Gist options
  • Save growupanand/83805f95812b8641b68e0f298b075199 to your computer and use it in GitHub Desktop.
Save growupanand/83805f95812b8641b68e0f298b075199 to your computer and use it in GitHub Desktop.
Fake async await in javascript
function timeout(ms) {
return new Promise((resolve) => setTimeout(resolve, ms));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment