Sobes.tech
Back to tasks
Junior — Senior
178

Результат выполнения цепочки Promise в консоли

Get help with live coding in real time with Sobes Copilot
Task condition

Какой вывод появится в консоли при выполнении следующего кода?

Promise.resolve(1)
  .then(x => x + 1)
  .then(x => { throw x })
  .then(x => console.log(x))
  .catch(err => console.log(err))
  .then(x => Promise.resolve(1))
  .catch(err => console.log(err))
  .then(x => console.log(x));