Skip to content

Instantly share code, notes, and snippets.

@sebsto
Created June 25, 2019 08:54
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/028d23a01c93b7d15aa349c81feba819 to your computer and use it in GitHub Desktop.
Save sebsto/028d23a01c93b7d15aa349c81feba819 to your computer and use it in GitHub Desktop.
Async - the bad
function asyncWorker() {
return new Promise( (resolve, reject) => {
setTimeout(resolve, 2000);
});
}
function main() {
callback = () => {
console.debug('callback !');
}
console.debug('Started');
asyncWorker().then(callback);
console.debug('Ended');
}
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment