Created
February 29, 2016 23:25
-
-
Save rivertam/4eeed5a8e5855b290da1 to your computer and use it in GitHub Desktop.
Test non-async async
This file contains hidden or 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
const hi = async () => 5; | |
hi().then(num => console.log(num)); // results in 5... eventually |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment