Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save exinferis/c313b41297d575eb5b751b6841e375a2 to your computer and use it in GitHub Desktop.
Save exinferis/c313b41297d575eb5b751b6841e375a2 to your computer and use it in GitHub Desktop.
fetch({url: "/whatever/123", method: "DELETE"})
.then((response) => {
console.log("Got response for DELETE Request", response);
})
.catch((err) => {
console.error("DELETE REQUEST failed: ", err);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment