Advertisement
thanhnb

Promise

Oct 3rd, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. // thay vì
  2. e_nhau_khong()
  3. .then(uong_ruou)
  4. .then(hut_thuoc)
  5. .then(ve_nha)
  6. .catch(console.log);
  7.  
  8. // nên viết thế này
  9. e_nhau_khong()
  10. .then(function(){
  11. return Promise.all([
  12. uong_ruou(),
  13. hut_thuoc()
  14. ])
  15. })
  16. .then(ve_nha)
  17. .catch(console.error.bind(console));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement