Skip to content

Instantly share code, notes, and snippets.

@aslamanver
Created January 30, 2019 06:12
Show Gist options
  • Save aslamanver/cbb0d580a057295dd7ecaa606d205efc to your computer and use it in GitHub Desktop.
Save aslamanver/cbb0d580a057295dd7ecaa606d205efc to your computer and use it in GitHub Desktop.
Reqres.in
var xhr = new XMLHttpRequest();
xhr.open("GET", "https://reqres.in/api/products/3", true);
xhr.onload = function(){
console.log(xhr.responseText);
};
xhr.send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment