Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
axios .get(`...`) .then(res => {...}) axios .patch(`...`) .then(res => {...})
axios.get().then(resOne => { axios.get().then(resTwo => {}) }) const response = async () => { const resOne = await axios.get(); const resTwo = await axios.get(); }