If I have the following Axios call and if my request request returns 401 or 403 status code. Then, is the call going to end up inside the catch (err => block?
axios.get('/my-highly-available-api').then(response => `{ // do stuff `}) .catch(err => `{ // what now? `console.log(err); `` })