async awiat

  1. async: The async keyword is used to define an asynchronous function.
  2. await: The await keyword is used to pause the execution of an async function until a Promise is settled (either resolved or rejected), and to resume execution of the async function after fulfillment.