JavaScript

Using promises to catch errors

javascript,es6,object,web_development

return functionA()
  .then(functionB)
  .then(functionC)
  .then(functionD)
  .catch((err) => logger.error(err))
  .then(alwaysExecuteThisFunction)

Recommended snippets

Đăng ký nhận bản tin về "Học code 30 seconds"