async/await is syntax sugar over Promises that lets you write asynchronous code that reads like synchronous code. An async function always returns a Promise; await pauses the function until a Promise settles, then resumes with its value.
() {
{
res = ();
user = res.();
user;
} (err) {
.(err);
}
}
