✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Node.js
Що виведе цей код?
console.log('A');
setTimeout(() => console.log('B'), 0);
Promise.resolve().then(() => console.log('C'));
console.log('D');