ازاى استخدم async/await ؟
ازاى استخدم async/await بدل then.....catch
يعنى مثلا
randomPromise
.then(()=>{
//do something
})
.catch(()=>{
//an error has occurred
})
ازاى اكتب الكود ده ب  async/await  ؟
1 إجابة
بنستخدم async/await لما نكون عايزين نوقف تنفيذ باقى الكود لغاية ما تاسك معين يخلص ممكن يكون fetch request او عايزين نقرا  JSON content او اى asynchronous task.
مثلا:
async function fetchData(){
try{
await fetch({/*some options*/})
} catch(err){
//handle an error
}
//this code will NOT run until a response is received from the fetch request
//or an error occurs
}
لاحظ ان أى function فيها await لازم تكتب async قبل ال definition بتاعها.