Question #254

Author: admin
tags: JavaScript  
Promise.resolve('a')
  .then((v) => v + 'b')
  .then((v) => v + 'c')
  .catch((v) => v + 'd')
  .finally((v) => v + 'e')
  .then((v) => console.log(v)); // ??
What will be printed?
undefined
abcde
a
abc
abce
abcd
Rate the difficulty of the question:
easyhard