Skip to content

Instantly share code, notes, and snippets.

@sabesansathananthan
Created January 13, 2021 20:01
Show Gist options
  • Save sabesansathananthan/8a5d4d00841fd569ec20388592f88216 to your computer and use it in GitHub Desktop.
Save sabesansathananthan/8a5d4d00841fd569ec20388592f88216 to your computer and use it in GitHub Desktop.
Axios Vs Fetch
axios({
url: "http://api.com",
method: "POST",
header: {
"Content-Type": "application/json",
},
data: { name: "Sabesan", age: 25 },
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment