Skip to content

Instantly share code, notes, and snippets.

@nakasyou
Last active June 29, 2024 11:51
Show Gist options
  • Save nakasyou/993ed5ae9fc2e29783518b97a610baf0 to your computer and use it in GitHub Desktop.
Save nakasyou/993ed5ae9fc2e29783518b97a610baf0 to your computer and use it in GitHub Desktop.
a
function reqListener() {
console.log(this.responseText);
}
const req = new XMLHttpRequest();
req.addEventListener("load", reqListener);
req.open("GET", "https://httpbin.org/get");
req.send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment