Frontend
Interviews
.dev
Problems
669. Promise.finally Reject Overrides
Easy
•
...
Predict the output.
Promise
.
reject
(
'e1'
)
.
finally
(
(
)
=>
Promise
.
reject
(
'e2'
)
)
.
catch
(
console
.
log
)
What is printed in the console?
e1
e2
undefined
AggregateError
Submit Answer
Reveal Answer
Select an option and submit your answer.
Next Problem
Auto-advance on correct answer