Async/Await Syntax
What does this code demonstrate about await usage?
async function example() {
const a = await Promise.resolve(1);
const b = Promise.resolve(2);
const c = 3;
return a + await b + c;
}
async function example() {
const a = await Promise.resolve(1);
const b = Promise.resolve(2);
const c = 3;
return a + await b + c;
}