Created
May 31, 2021 12:51
-
-
Save realrains/4e450e9276d488d44fac2bbb2f090dcc to your computer and use it in GitHub Desktop.
test
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
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