Skip to content

Instantly share code, notes, and snippets.

@realrains
Created May 31, 2021 12:51
Show Gist options
  • Save realrains/4e450e9276d488d44fac2bbb2f090dcc to your computer and use it in GitHub Desktop.
Save realrains/4e450e9276d488d44fac2bbb2f090dcc to your computer and use it in GitHub Desktop.
test
async () => {
const response = await getData();
const result = await someTask(response);
const result_2 = await someNextTask(result);
const result_3 = await someNextNextTask(result_2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment