✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Node.js
Що виведе цей код?
Promise.resolve(1)
.then(n => {
Promise.resolve(n + 10);
})
.then(v => console.log(v));