Guest User

Untitled

a guest
Nov 19th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. asyncFunc()
  2. .then(result => {
  3. return anotherAsyncFunc(result);
  4. })
  5. .then(chainResult => {
  6. return chainResult.json();
  7. })
  8. .catch(error => {
  9. console.log(error);
  10. })
Add Comment
Please, Sign In to add comment