Axios

Using Axios to send XHRs.

//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!

Author: Keane Le

Have you ever seen a bear code? Probably not. I like to learn things about Software Development and IT. Let's learn together. Maybe you can teach me. Maybe I can teach you.