Skip to content

Instantly share code, notes, and snippets.

@sabesansathananthan
Created February 9, 2021 05:27
Show Gist options
  • Save sabesansathananthan/4c128a12dea7f1705580bee002b08193 to your computer and use it in GitHub Desktop.
Save sabesansathananthan/4c128a12dea7f1705580bee002b08193 to your computer and use it in GitHub Desktop.
Axios Vs Fetch
fetch('url')
.then((response)=>{
if(!response.ok){
throw Error (response.statusText);
}
return response.json();
})
.then((data)=>console.log(data))
.catch((error)=>console.log(error))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment