ازاى استخدم async/await ؟ ازاى استخدم async/await بدل then.....catch يعنى مثلاrandomPromise .then(()=>{ //do something }) .catch(()=>{ //an error has occurred })ازاى اكتب الكود ده ب  async/await  ؟
ازاى استنى اكتر من promise فى نفس الوقت؟ لو عندى اكتر من asynchronous task ومش عايز استنى لما واحد واحد يخلص مثلا:function testFunction (){ const promise1 = /* some async task*/ const promise2 = /* some async task*/ const promise3 = /* some async task*/ return; }ازاى اخلى كل الtasks تشتغل فى نفس الوقت والfunction متنتهيش غير لما يخلصّو كلهم. شكرا