Predict the console output.
Promise.resolve() .then(() => { console.log('A') return 'B' }) .then((v) => console.log(v)) console.log('C')