Skip to content

Instantly share code, notes, and snippets.

@hustKiwi
Created September 28, 2019 03:00
Show Gist options
  • Save hustKiwi/8f3d956f61ab333197250c56cfacf3e6 to your computer and use it in GitHub Desktop.
Save hustKiwi/8f3d956f61ab333197250c56cfacf3e6 to your computer and use it in GitHub Desktop.
const xhr = new XMLHttpRequest();
xhr.open('GET', 'https://randomuser.me/api/');
xhr.onload = () => {
console.log(JSON.parse(xhr.responseText))
}
xhr.send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment