Skip to content

Instantly share code, notes, and snippets.

@sabesansathananthan
Last active January 14, 2021 19:37
Show Gist options
  • Save sabesansathananthan/a20d65b8dd9691b86854a5d0aa0344a8 to your computer and use it in GitHub Desktop.
Save sabesansathananthan/a20d65b8dd9691b86854a5d0aa0344a8 to your computer and use it in GitHub Desktop.
Axios Vs Fetch
fetch('url')
.then((response) => 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