Skip to content

Instantly share code, notes, and snippets.

@sebsto
Created June 25, 2019 08:57
Embed
What would you like to do?
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