Advertisement
Gourmet

Untitled

Jun 29th, 2020
974
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. doSomethingCritical().then((result) => {
  2.     doSomethingOptional(result).then(optionalResult => {
  3.         doSomethingExtraNice(optionalResult)
  4.     }).catch(() => {
  5.         console.log('Catch() interno');
  6.     });
  7. }).then(() => {
  8.     moreCriticalStuff();
  9. }).catch(() => {
  10.     console.log('Catch() externo');
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement