let x = 0; async function test() { x += await 5; console.log('x :', x); } test(); x += 1; console.log('x :', x);
let x = 0; async function test() { x += await 5; console.log('x :', x); } test(); x += 1; console.log('y :', x);