Skip to content

Instantly share code, notes, and snippets.

@StanleyMasinde
Created January 19, 2024 15:48
Show Gist options
  • Save StanleyMasinde/c3288a591dea3c713d6deb406547cead to your computer and use it in GitHub Desktop.
Save StanleyMasinde/c3288a591dea3c713d6deb406547cead to your computer and use it in GitHub Desktop.
XMLHTTP Request
const req = new XMLHttpRequest()
req.addEventListener('load', (event) => {
console.log(event.target.response)
})
req.open('https://jsonplaceholder.typicode.com/posts')
req.send()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment