Skip to content

Instantly share code, notes, and snippets.

@ferreiratiago
Created May 6, 2017 18:19
Show Gist options
  • Save ferreiratiago/7dbee86c09fc285dea22f96c34b80a1e to your computer and use it in GitHub Desktop.
Save ferreiratiago/7dbee86c09fc285dea22f96c34b80a1e to your computer and use it in GitHub Desktop.
Async in classes.
class Random {
async getRandom () {
return await getRandomWithPromise();
}
}
(async function () {
var random = new Random();
console.log(`Your random number is ${await random.getRandom()}!`)
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment