Created
May 6, 2017 18:19
-
-
Save ferreiratiago/7dbee86c09fc285dea22f96c34b80a1e to your computer and use it in GitHub Desktop.
Async in classes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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