Skip to content

Instantly share code, notes, and snippets.

@Salman18
Created June 18, 2022 04:22
Show Gist options
  • Save Salman18/eff89fc10c320170193245809e9277fe to your computer and use it in GitHub Desktop.
Save Salman18/eff89fc10c320170193245809e9277fe to your computer and use it in GitHub Desktop.
let breakingBadProimse = fetch("https://www.breakingbadapi.com/api/characters");
breakingBadProimse
.then(function(res){
return res.json();
})
.then(function(res){
console.log(res)
})
.catch(function(error){
console.log(error)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment