xxxxxxxxxx
const foo = async () => {
// do something
}
xxxxxxxxxx
//very simple
async()=>{}
/*
*it's the same just like a normal arrow function,
*but you can also use await (*/
const get=async(url,action)=>{(await fetch(url)).text().then(action)}
/*)
*
*/