Skip to content

Instantly share code, notes, and snippets.

@deadlysyn
Created February 22, 2018 16:47
Show Gist options
  • Save deadlysyn/f8d39ddcc9edf0aa84be9e4e0bc5fb84 to your computer and use it in GitHub Desktop.
Save deadlysyn/f8d39ddcc9edf0aa84be9e4e0bc5fb84 to your computer and use it in GitHub Desktop.
// Axios
const btnAxios = document.querySelector('#btnAxios')
btnAxios.addEventListener('click', function() {
axios.get(API)
.then(function(res) {
PRICE.textContent = res.data.bpi.USD.rate + ' USD'
})
.catch(function(err) {
console.log(err)
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment