# Async..await is syntactic sugar on Promises

```js
const getData = () => {
  return new Promise((resolve) => {
    resolve("Hello World");
  });
};

getData().then((result) => console.log(result));

// is same as

const main = async () => {
  const result = await getData();
  console.log(result);
};
main();
```

