async function getX() { return 5; } async function run() { const x = getX(); console.log(typeof x.then, x + 1); } await run();