Skip to content

Instantly share code, notes, and snippets.

@irridescentrambler
Last active May 19, 2019 16:49
Show Gist options
  • Save irridescentrambler/b03ab992814ad76875b97b84aa9c8b1b to your computer and use it in GitHub Desktop.
Save irridescentrambler/b03ab992814ad76875b97b84aa9c8b1b to your computer and use it in GitHub Desktop.
async function myFirstAsyncFunction(){
return "Hello"
}
myFirstAsyncFunction().then((result) => {
console.log(result);
});
// Output
// Hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment