index.js
function resolveAfter2Seconds() {
    return new Promise((resolve) => { 
      setTimeout(() => { 
        resolve('resolved');
      }, 2000);
    });
  }

 async function asyncCall() {
    console.log('calling'); 
    const result = await resolveAfter2Seconds();
    console.log(result);
  }

asyncCall();

snippix.netlify.app

Padding
10px
16px
32px
64px