Skip to content

Instantly share code, notes, and snippets.

@sebsto
Created June 25, 2019 08:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebsto/382b0d41ee933ea5f512d1c2e1be2707 to your computer and use it in GitHub Desktop.
Save sebsto/382b0d41ee933ea5f512d1c2e1be2707 to your computer and use it in GitHub Desktop.
Async - the good
async function asyncWorker() {
return new Promise( (resolve, reject) => {
setTimeout(resolve, 2000);
});
}
async function main() {
console.debug('Started');
await asyncWorker();
console.debug('Ended');
}
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment