//Utilizing Axios to send XHRs //axios is not native to the browser environment so you would have to include it via html script tag axios.get("https://api.icndb.com/jokes/random") .then(res => alert(res.data.value.joke)) //send alert with the joke .catch(err => alert(<code>There was a problem with the request! ${err.response.status}: ${err.message}</code>)) //response status 400s are actually caught in the catch block of Axios. Neat!
Axios
Using Axios to send XHRs.