Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyNodeJSpromises and async awaitSingle-choice MCQ

What value does the `.then` receive after a `.finally()` whose own callback returns a different value?

Promise.resolve('a') .finally(() => 'b') .then(v => console.log(v));