Skip to content

Instantly share code, notes, and snippets.

@thejohnfreeman
Last active January 7, 2019 04:19
Show Gist options
  • Save thejohnfreeman/78d8f13a9c515a2debc48f88f9c2dd30 to your computer and use it in GitHub Desktop.
Save thejohnfreeman/78d8f13a9c515a2debc48f88f9c2dd30 to your computer and use it in GitHub Desktop.
async function () {
const result1 = await step1()
const result2 = await step2(result1)
const result3 = await step3(result2)
const result4 = await step4(result3)
console.log(result4)
}()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment