Created
March 17, 2020 20:36
-
-
Save viniciusdacal/793664f2a2ade94b1d71a5960954a832 to your computer and use it in GitHub Desktop.
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
let ajaxCalls = async () => { | |
const r1 = await someajaxPromiseFn1(); | |
const r2 = await someajaxPromiseFn2(r1); | |
const r3 = await someajaxPromiseFn3(r2); | |
setState(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment