✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Node.js
Який порядок виведення у цьому коді?
async function f() {
try { console.log('1'); return 'done'; }
catch { console.log('2'); }
finally { console.log('3'); }
}
f().then(v => console.log(v));