เปรียบเทียบ Promise vs Async/Await

async function getData() {
  const res = await fetch("/api/data");
  return res.json();
}

อ่านง่ายกว่าและ debug ง่ายกว่ามาก