Hint
Promise chains pass return values downstream. Each .then transforms the value.
Promise.resolve(2)
.then(v => v * 3)
.then(v => v + 4)
.then(v => console.log(v));10
Explanation: Each .then receives the return value of the previous. 2*3=6, 6+4=10.
Key Insight: Promise chains pass return values downstream. Each .then transforms the value.