Skip to content

Instantly share code, notes, and snippets.

@viniciusdacal
Created March 17, 2020 20:36
Show Gist options
  • Save viniciusdacal/793664f2a2ade94b1d71a5960954a832 to your computer and use it in GitHub Desktop.
Save viniciusdacal/793664f2a2ade94b1d71a5960954a832 to your computer and use it in GitHub Desktop.
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