Sobes.tech
Назад к задачам
Junior — Senior
121

Что будет выведено в консоль (пример 87)

Компании, где спрашивали:
ЯндексЯндекс

Условие задачи

livecode

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

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