Skip to content

Instantly share code, notes, and snippets.

@omartrigui
Created January 9, 2018 18:46
Show Gist options
  • Save omartrigui/68476941e04ff4c8b7d4eb7a07742500 to your computer and use it in GitHub Desktop.
Save omartrigui/68476941e04ff4c8b7d4eb7a07742500 to your computer and use it in GitHub Desktop.
Async/Await
function getCoffee() {
return new Promise(resolve => {
setTimeout(() => resolve('xDD'), 2000);
});
}
async function go() {
const coffee = await getCoffee();
console.log(coffee);
}
go();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment